mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-28 14:36:34 +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
9 lines
142 B
LLVM
9 lines
142 B
LLVM
; RUN: opt < %s -dse -S | grep {volatile load}
|
|
|
|
@g_1 = global i32 0
|
|
|
|
define void @foo() nounwind {
|
|
%t = volatile load i32* @g_1
|
|
ret void
|
|
}
|