mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
e3d6551059
A really simple patch marks the end of a lot of yak shaving :-) llvm-svn: 202463
9 lines
124 B
LLVM
9 lines
124 B
LLVM
; RUN: llvm-as %s -o - | llvm-nm - | FileCheck %s
|
|
|
|
target datalayout = "m:o"
|
|
|
|
; CHECK: T _f
|
|
define void @f() {
|
|
ret void
|
|
}
|