diff options
author | Juneyoung Lee <aqjune@gmail.com> | 2021-04-08 15:44:42 +0900 |
---|---|---|
committer | Juneyoung Lee <aqjune@gmail.com> | 2021-04-08 15:44:42 +0900 |
commit | fe16aa7d65512161bd7ea3b85f6aa726cc36ae12 (patch) | |
tree | 017ba94f4377e35db686368b7ffd9e0255b8b56d /llvm/unittests/IR/ConstantsTest.cpp | |
parent | 648544f998cd0811670a625f4f2964125cf833b3 (diff) | |
download | llvm-fe16aa7d65512161bd7ea3b85f6aa726cc36ae12.zip llvm-fe16aa7d65512161bd7ea3b85f6aa726cc36ae12.tar.gz llvm-fe16aa7d65512161bd7ea3b85f6aa726cc36ae12.tar.bz2 |
[Constant] Remove unused variable
Diffstat (limited to 'llvm/unittests/IR/ConstantsTest.cpp')
-rw-r--r-- | llvm/unittests/IR/ConstantsTest.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/unittests/IR/ConstantsTest.cpp b/llvm/unittests/IR/ConstantsTest.cpp index 54ef98c..4621288 100644 --- a/llvm/unittests/IR/ConstantsTest.cpp +++ b/llvm/unittests/IR/ConstantsTest.cpp @@ -640,7 +640,6 @@ TEST(ConstantsTest, isElementWiseEqual) { Type *Int32Ty = Type::getInt32Ty(Context); Constant *CU = UndefValue::get(Int32Ty); - Constant *CP = PoisonValue::get(Int32Ty); Constant *C1 = ConstantInt::get(Int32Ty, 1); Constant *C2 = ConstantInt::get(Int32Ty, 2); |