diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-10-02 17:05:03 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-10-02 17:05:03 +0000 |
commit | 76dba94dfa02acd3787876d1d463b46a6251acd5 (patch) | |
tree | 05d512c9ce82a6186489d0d028dff2cb3625234d | |
parent | d790a5ceee7138d8a5352432ccf862a42e3f5819 (diff) |
Rename IRBuilder::IsNonNull -> IsNotNull in response to feedback.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56953 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/IRBuilder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h index 1156825efb..9e7aa45980 100644 --- a/include/llvm/Support/IRBuilder.h +++ b/include/llvm/Support/IRBuilder.h @@ -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); } |