mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
74351693ea
This makes the LLVM assembly look better. E.g.: define void @foo() #0 { ret void } attributes #0 = { nounwind noinline ssp } llvm-svn: 175605
9 lines
168 B
LLVM
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 }
|