diff options
-rw-r--r-- | test/Analysis/BasicAA/2003-11-04-SimpleCases.ll | 15 | ||||
-rw-r--r-- | test/Transforms/BasicAA/2003-11-04-SimpleCases.ll | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/test/Analysis/BasicAA/2003-11-04-SimpleCases.ll b/test/Analysis/BasicAA/2003-11-04-SimpleCases.ll new file mode 100644 index 0000000000..2b6c7e12e1 --- /dev/null +++ b/test/Analysis/BasicAA/2003-11-04-SimpleCases.ll @@ -0,0 +1,15 @@ +; This testcase consists of alias relations which should be completely +; resolvable by basicaa. + +; RUN: llvm-as < %s | opt -aa-eval -print-may-aliases 2>&1 -disable-output | not grep May: + +%T = type { uint, [10 x ubyte] } + +void %test(%T* %P) { + %A = getelementptr %T* %P, long 0 + %B = getelementptr %T* %P, long 0, ubyte 0 + %C = getelementptr %T* %P, long 0, ubyte 1 + %D = getelementptr %T* %P, long 0, ubyte 1, long 0 + %E = getelementptr %T* %P, long 0, ubyte 1, long 5 + ret void +} diff --git a/test/Transforms/BasicAA/2003-11-04-SimpleCases.ll b/test/Transforms/BasicAA/2003-11-04-SimpleCases.ll new file mode 100644 index 0000000000..2b6c7e12e1 --- /dev/null +++ b/test/Transforms/BasicAA/2003-11-04-SimpleCases.ll @@ -0,0 +1,15 @@ +; This testcase consists of alias relations which should be completely +; resolvable by basicaa. + +; RUN: llvm-as < %s | opt -aa-eval -print-may-aliases 2>&1 -disable-output | not grep May: + +%T = type { uint, [10 x ubyte] } + +void %test(%T* %P) { + %A = getelementptr %T* %P, long 0 + %B = getelementptr %T* %P, long 0, ubyte 0 + %C = getelementptr %T* %P, long 0, ubyte 1 + %D = getelementptr %T* %P, long 0, ubyte 1, long 0 + %E = getelementptr %T* %P, long 0, ubyte 1, long 5 + ret void +} |