mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
5230c79252
Support the "alias" directive. Required support for emitWeakReference in MCWinCOFFStreamer. Reviewed By: thakis Differential Revision: https://reviews.llvm.org/D87403
14 lines
166 B
Plaintext
14 lines
166 B
Plaintext
# RUN: llvm-ml -m32 -filetype=asm %s | FileCheck %s
|
|
# RUN: llvm-ml -m64 -filetype=asm %s | FileCheck %s
|
|
|
|
.code
|
|
|
|
t1 PROC
|
|
ret
|
|
t1 ENDP
|
|
|
|
; CHECK: t1:
|
|
; CHECK: ret
|
|
|
|
END
|