diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-14 23:09:55 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-14 23:09:55 +0000 |
commit | b6b2530000366d6982736dd0d0cc3585b01cf37b (patch) | |
tree | fbc341c4197153ef4908d7b6b75b5b2b57a1b46f /llvm/unittests/Support | |
parent | eea582f04f1a8fb0d1b81e45e83e9c116869a502 (diff) | |
download | bcm5719-llvm-b6b2530000366d6982736dd0d0cc3585b01cf37b.tar.gz bcm5719-llvm-b6b2530000366d6982736dd0d0cc3585b01cf37b.zip |
Move EVER MORE stuff over to LLVMContext.
llvm-svn: 75703
Diffstat (limited to 'llvm/unittests/Support')
-rw-r--r-- | llvm/unittests/Support/ValueHandleTest.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/unittests/Support/ValueHandleTest.cpp b/llvm/unittests/Support/ValueHandleTest.cpp index 7a709427c96..17d8f182905 100644 --- a/llvm/unittests/Support/ValueHandleTest.cpp +++ b/llvm/unittests/Support/ValueHandleTest.cpp @@ -25,8 +25,9 @@ protected: Constant *ConstantV; std::auto_ptr<BitCastInst> BitcastV; - ValueHandle() : ConstantV(ConstantInt::get(Type::Int32Ty, 0)), - BitcastV(new BitCastInst(ConstantV, Type::Int32Ty)) { + ValueHandle() : + ConstantV(getGlobalContext().getConstantInt(Type::Int32Ty, 0)), + BitcastV(new BitCastInst(ConstantV, Type::Int32Ty)) { } }; |