mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
4082cce59d
Switch to OptParser for command-line handling Reviewed By: thakis Differential Revision: https://reviews.llvm.org/D90058
14 lines
174 B
NASM
14 lines
174 B
NASM
# RUN: llvm-ml -m32 -filetype=s %s /Fo - | FileCheck %s
|
|
# RUN: llvm-ml -m64 -filetype=s %s /Fo - | FileCheck %s
|
|
|
|
.code
|
|
|
|
t1 PROC
|
|
ret
|
|
t1 ENDP
|
|
|
|
; CHECK: t1:
|
|
; CHECK: ret
|
|
|
|
END
|