X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=lib%2FIR%2FConstantsContext.h;h=f06509fb73a504f8cc0292d4a1047c9a7c527717;hb=dce4a407a24b04eebc6a376f8e62b41aaa7b071f;hp=59b9d4d3c5ed0dd0050a127ee0480b1d0fdc88df;hpb=220b921aed042f9e520c26cffd8282a94c66c3d5;p=android-x86%2Fexternal-llvm.git diff --git a/lib/IR/ConstantsContext.h b/lib/IR/ConstantsContext.h index 59b9d4d3c5e..f06509fb73a 100644 --- a/lib/IR/ConstantsContext.h +++ b/lib/IR/ConstantsContext.h @@ -24,6 +24,9 @@ #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" #include +#include + +#define DEBUG_TYPE "ir" namespace llvm { template @@ -584,7 +587,7 @@ public: /// necessary. ConstantClass *getOrCreate(TypeClass *Ty, ValRefType V) { MapKey Lookup(Ty, V); - ConstantClass* Result = 0; + ConstantClass* Result = nullptr; typename MapTy::iterator I = Map.find(Lookup); // Is it in the map? @@ -720,7 +723,7 @@ public: /// necessary. ConstantClass *getOrCreate(TypeClass *Ty, Operands V) { LookupKey Lookup(Ty, V); - ConstantClass* Result = 0; + ConstantClass* Result = nullptr; typename MapTy::iterator I = Map.find_as(Lookup); // Is it in the map?