reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ; RUN: opt -S -functionattrs < %s | FileCheck %s ; RUN: opt -S -passes=function-attrs < %s | FileCheck %s define void @f() { ; CHECK-LABEL: define void @f() #0 { call void @g() [ "unknown"() ] ret void } define void @g() { ; CHECK-LABEL: define void @g() #0 { call void @f() ret void } ; CHECK: attributes #0 = { nofree nounwind } |