android_mt6572_jiabo/external/llvm/test/Transforms/FunctionAttrs/2010-10-30-volatile.ll
2025-09-05 16:56:03 +08:00

12 lines
216 B
LLVM

; RUN: opt < %s -functionattrs -S | FileCheck %s
; PR8279
@g = constant i32 1
define void @foo() {
; CHECK: void @foo() #0 {
%tmp = load volatile i32, i32* @g
ret void
}
; CHECK: attributes #0 = { norecurse }