mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-06 19:31:13 +00:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
14 lines
253 B
LLVM
14 lines
253 B
LLVM
; RUN: opt < %s -basicaa -gvn -S | grep load
|
|
|
|
declare noalias i32* @noalias()
|
|
|
|
define i32 @test(i32 %x) {
|
|
%a = call i32* @noalias()
|
|
store i32 1, i32* %a
|
|
%b = getelementptr i32* %a, i32 %x
|
|
store i32 2, i32* %b
|
|
|
|
%c = load i32* %a
|
|
ret i32 %c
|
|
}
|