mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
9d1e8420ff
llvm-svn: 145171
11 lines
168 B
LLVM
11 lines
168 B
LLVM
; RUN: opt < %s -functionattrs -S | FileCheck %s
|
|
; PR8279
|
|
|
|
@g = constant i32 1
|
|
|
|
define void @foo() {
|
|
; CHECK: void @foo() {
|
|
%tmp = load volatile i32* @g
|
|
ret void
|
|
}
|