summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGor Nishanov <GorNishanov@gmail.com>2017-05-27 05:24:30 +0000
committerGor Nishanov <GorNishanov@gmail.com>2017-05-27 05:24:30 +0000
commite5d29118564d48c935e929394c256faf3e9a7784 (patch)
treea43787b4e22cb1a95b0772637566d1825f7b1b4b
parentd5fcbef8ee95058bf6303d3f6522bd941b7adbb6 (diff)
downloadbcm5719-llvm-e5d29118564d48c935e929394c256faf3e9a7784.tar.gz
bcm5719-llvm-e5d29118564d48c935e929394c256faf3e9a7784.zip
ScalarEvolution unit test: fix typo that breaks check-all
llvm-svn: 304063
-rw-r--r--llvm/unittests/Analysis/ScalarEvolutionTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Analysis/ScalarEvolutionTest.cpp b/llvm/unittests/Analysis/ScalarEvolutionTest.cpp
index c9837a942ce..fcbbb46f7a7 100644
--- a/llvm/unittests/Analysis/ScalarEvolutionTest.cpp
+++ b/llvm/unittests/Analysis/ScalarEvolutionTest.cpp
@@ -914,7 +914,7 @@ TEST_F(ScalarEvolutionsTest, SCEVZeroExtendExprNonIntegral) {
Phi->addIncoming(Add, L);
Builder.SetInsertPoint(Post);
- Value *GepBase = Builder.CreateGEP(Arg, {ConstantInt::get(T_int64, 1)});
+ Value *GepBase = Builder.CreateGEP(Arg, ConstantInt::get(T_int64, 1));
Instruction *Ret = Builder.CreateRetVoid();
ScalarEvolution SE = buildSE(*F);
OpenPOWER on IntegriCloud