aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-08-13 08:56:48 +0000
committerDuncan Sands <baldrick@free.fr>2008-08-13 08:56:48 +0000
commit9d8658a1292c1674f4968700b91e5a3b5ee3bf4e (patch)
treefbc90bd03e7d55f99bc8214f14f644980b626a36
parent739e441311410796d66e6d72426ef0344e0be98f (diff)
downloadexternal_llvm-9d8658a1292c1674f4968700b91e5a3b5ee3bf4e.tar.gz
external_llvm-9d8658a1292c1674f4968700b91e5a3b5ee3bf4e.tar.bz2
external_llvm-9d8658a1292c1674f4968700b91e5a3b5ee3bf4e.zip
Rename this, in case people think that NullFolder
has something to do with folding null values. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54725 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Support/NoFolder.h (renamed from include/llvm/Support/NullFolder.h)8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Support/NullFolder.h b/include/llvm/Support/NoFolder.h
index 634d38eb6a..f4bec62961 100644
--- a/include/llvm/Support/NullFolder.h
+++ b/include/llvm/Support/NoFolder.h
@@ -1,4 +1,4 @@
-//=====-- llvm/Support/NullFolder.h - Constant folding helper -*- C++ -*-=====//
+//======-- llvm/Support/NoFolder.h - Constant folding helper -*- C++ -*-======//
//
// The LLVM Compiler Infrastructure
//
@@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
//
-// This file defines the NullFolder class, a helper for IRBuilder. It provides
+// This file defines the NoFolder class, a helper for IRBuilder. It provides
// IRBuilder with a set of methods for creating unfolded constants. This is
// useful for learners trying to understand how LLVM IR works, and who don't
// want details to be hidden by the constant folder. For general constant
@@ -28,8 +28,8 @@
namespace llvm {
-/// NullFolder - Create "constants" (actually, values) with no folding.
-class NullFolder {
+/// NoFolder - Create "constants" (actually, values) with no folding.
+class NoFolder {
public:
//===--------------------------------------------------------------------===//