diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-02-27 21:31:00 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-02-27 21:31:00 +0000 |
commit | 47d678391321a65acf401b4bd99a318f8e217121 (patch) | |
tree | 7dac9239e576f26dcb51f48fb92796a2e298459a | |
parent | c94eca0546b537bbc771f8dc0ea894b74b388361 (diff) | |
download | bcm5719-llvm-47d678391321a65acf401b4bd99a318f8e217121.tar.gz bcm5719-llvm-47d678391321a65acf401b4bd99a318f8e217121.zip |
Fix test I missed
This was & is failing at ToT, but now it's failing for the original
reason, not because the IR can't be parsed.
llvm-svn: 230797
-rw-r--r-- | polly/test/ScopInfo/scalar_dependence_cond_br.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/test/ScopInfo/scalar_dependence_cond_br.ll b/polly/test/ScopInfo/scalar_dependence_cond_br.ll index 5a2afe47df9..972dfd30243 100644 --- a/polly/test/ScopInfo/scalar_dependence_cond_br.ll +++ b/polly/test/ScopInfo/scalar_dependence_cond_br.ll @@ -30,7 +30,7 @@ for.body: ; preds = %for.cond if.then: ; preds = %for.body %arrayidx = getelementptr inbounds i32, i32* %A, i64 %indvars.iv - %tmp = load i32* %arrayidx, align 4 + %tmp = load i32, i32* %arrayidx, align 4 %inc = add nsw i32 %tmp, 1 store i32 %inc, i32* %arrayidx, align 4 br label %if.end |