mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01: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
13 lines
335 B
LLVM
13 lines
335 B
LLVM
; RUN: opt < %s -scalarrepl -S | grep {volatile load}
|
|
; RUN: opt < %s -scalarrepl -S | grep {volatile store}
|
|
|
|
define i32 @voltest(i32 %T) {
|
|
%A = alloca {i32, i32}
|
|
%B = getelementptr {i32,i32}* %A, i32 0, i32 0
|
|
volatile store i32 %T, i32* %B
|
|
|
|
%C = getelementptr {i32,i32}* %A, i32 0, i32 1
|
|
%X = volatile load i32* %C
|
|
ret i32 %X
|
|
}
|