You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; 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 }
|