You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
174 B
14 lines
174 B
4 months ago
|
# 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
|