From: Daniel Dunbar Date: Thu, 2 Oct 2008 17:05:03 +0000 (+0000) Subject: Rename IRBuilder::IsNonNull -> IsNotNull in response to feedback. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=76dba94dfa02acd3787876d1d463b46a6251acd5;p=oota-llvm.git 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 --- diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h index 1156825efb3..9e7aa459809 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); }