mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-09 21:32:49 +00: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
|
|
}
|