aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/IR/ConstantsTest.cpp
diff options
context:
space:
mode:
authorJuneyoung Lee <aqjune@gmail.com>2021-04-08 15:44:42 +0900
committerJuneyoung Lee <aqjune@gmail.com>2021-04-08 15:44:42 +0900
commitfe16aa7d65512161bd7ea3b85f6aa726cc36ae12 (patch)
tree017ba94f4377e35db686368b7ffd9e0255b8b56d /llvm/unittests/IR/ConstantsTest.cpp
parent648544f998cd0811670a625f4f2964125cf833b3 (diff)
downloadllvm-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.cpp1
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);