diff options
| author | Bill Wendling <isanbard@gmail.com> | 2008-12-16 19:06:48 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2008-12-16 19:06:48 +0000 |
| commit | e9b9b0721aa0cdb08d02eb5c3a55f1d736cf7b86 (patch) | |
| tree | 63dc423c8a0f40da76553a2c95d7fba71ec86851 /test/Analysis/BasicAA | |
| parent | f6b65367db9e02b7439c9bf284ed2cf291e575e6 (diff) | |
| download | external_llvm-e9b9b0721aa0cdb08d02eb5c3a55f1d736cf7b86.zip external_llvm-e9b9b0721aa0cdb08d02eb5c3a55f1d736cf7b86.tar.gz external_llvm-e9b9b0721aa0cdb08d02eb5c3a55f1d736cf7b86.tar.bz2 | |
Temporarily revert r61019, r61030, and r61040. These were breaking LLVM Release
builds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61094 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/BasicAA')
| -rw-r--r-- | test/Analysis/BasicAA/nocapture.ll | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/Analysis/BasicAA/nocapture.ll b/test/Analysis/BasicAA/nocapture.ll index aa4c7f1..e69de29 100644 --- a/test/Analysis/BasicAA/nocapture.ll +++ b/test/Analysis/BasicAA/nocapture.ll @@ -1,13 +0,0 @@ -; RUN: llvm-as < %s | opt -basicaa -gvn -instcombine | llvm-dis | grep {ret i32 0} - -declare i32* @test(i32* nocapture) - -define i32 @test2() { - %P = alloca i32 - %Q = call i32* @test(i32* %P) - %a = load i32* %P - store i32 4, i32* %Q ;; cannot clobber P since it is nocapture. - %b = load i32* %P - %c = sub i32 %a, %b - ret i32 %c -} |
