YouCompleteMe/cpp/llvm/test/Transforms/FunctionAttrs/2010-10-30-volatile.ll
2012-07-05 17:51:06 -07:00

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
}