1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00
llvm-mirror/test/Feature/minsize_attr.ll
Bill Wendling 74351693ea Modify the LLVM assembly output so that it uses references to represent function attributes.
This makes the LLVM assembly look better. E.g.:

     define void @foo() #0 { ret void }
     attributes #0 = { nounwind noinline ssp }

llvm-svn: 175605
2013-02-20 07:21:42 +00:00

9 lines
168 B
LLVM

; RUN: llvm-as < %s | llvm-dis | FileCheck %s
define void @test1() minsize {
; CHECK: define void @test1() #0
ret void
}
; CHECK: attributes #0 = { minsize }