forked from OSchip/llvm-project
ScalarEvolution unit test: fix typo that breaks check-all
llvm-svn: 304063
This commit is contained in:
parent
d5fcbef8ee
commit
e5d2911856
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue