Rename IRBuilder::IsNonNull -> IsNotNull in response to feedback.
authorDaniel Dunbar <daniel@zuster.org>
Thu, 2 Oct 2008 17:05:03 +0000 (17:05 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Thu, 2 Oct 2008 17:05:03 +0000 (17:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56953 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/IRBuilder.h

index 1156825efb34590a0d2e7891076140c70afeba0a..9e7aa459809070c8b16768f992b26886d42ba985 100644 (file)
@@ -641,8 +641,8 @@ public:
                         Name);
   }
 
-  /// CreateIsNonNull - Return an i1 value testing if \arg Arg is not null.
-  Value *CreateIsNonNull(Value *Arg, const char *Name = "") {
+  /// CreateIsNotNull - Return an i1 value testing if \arg Arg is not null.
+  Value *CreateIsNotNull(Value *Arg, const char *Name = "") {
     return CreateICmpNE(Arg, llvm::Constant::getNullValue(Arg->getType()), 
                         Name);
   }