diff options
| author | Dan Gohman <gohman@apple.com> | 2010-11-10 01:02:18 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-11-10 01:02:18 +0000 |
| commit | 2694e14087e9f56be392c688038050369cc8e6b7 (patch) | |
| tree | f20c969f25a3962eb45af5f505886c93bb7b1dfd /llvm/test | |
| parent | 49609d56d79809b691fc9f8400c229cf821cbd36 (diff) | |
| download | bcm5719-llvm-2694e14087e9f56be392c688038050369cc8e6b7.tar.gz bcm5719-llvm-2694e14087e9f56be392c688038050369cc8e6b7.zip | |
Make ModRefBehavior a lattice. Use this to clean up AliasAnalysis
chaining and simplify FunctionAttrs' GetModRefBehavior logic.
llvm-svn: 118660
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/Transforms/FunctionAttrs/2008-09-03-ReadNone.ll | 2 | ||||
| -rw-r--r-- | llvm/test/Transforms/FunctionAttrs/2008-09-03-ReadOnly.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/FunctionAttrs/2008-09-03-ReadNone.ll b/llvm/test/Transforms/FunctionAttrs/2008-09-03-ReadNone.ll index 535a1d0fba6..946453f586e 100644 --- a/llvm/test/Transforms/FunctionAttrs/2008-09-03-ReadNone.ll +++ b/llvm/test/Transforms/FunctionAttrs/2008-09-03-ReadNone.ll @@ -1,4 +1,4 @@ -; RUN: opt < %s -functionattrs -S | grep readnone | count 4 +; RUN: opt < %s -basicaa -functionattrs -S | grep readnone | count 4 @x = global i32 0 declare i32 @e() readnone diff --git a/llvm/test/Transforms/FunctionAttrs/2008-09-03-ReadOnly.ll b/llvm/test/Transforms/FunctionAttrs/2008-09-03-ReadOnly.ll index b455fdd8c3e..22eca132041 100644 --- a/llvm/test/Transforms/FunctionAttrs/2008-09-03-ReadOnly.ll +++ b/llvm/test/Transforms/FunctionAttrs/2008-09-03-ReadOnly.ll @@ -1,4 +1,4 @@ -; RUN: opt < %s -functionattrs -S | grep readonly | count 2 +; RUN: opt < %s -basicaa -functionattrs -S | grep readonly | count 2 define i32 @f() { entry: |

