ScalarEvolution unit test: fix typo that breaks check-all

llvm-svn: 304063
This commit is contained in:
Gor Nishanov 2017-05-27 05:24:30 +00:00
parent d5fcbef8ee
commit e5d2911856
1 changed files with 1 additions and 1 deletions

View File

@ -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);