brintos

brintos / llvm-project-archived public Read only

0
0
Text · 255 B · 7d8afd4 Raw
13 lines · plain
1; RUN: llvm-as < %s | llvm-dis | FileCheck %s2 3; Check for the presence of attribute optnone in the disassembly.4 5; CHECK: @foo() #06define void @foo() #0 {7  ret void8}9 10; CHECK: attributes #0 = { noinline optnone }11attributes #0 = { optnone noinline }12 13