mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 14:46:53 +00:00
d0eaa3383e
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258754 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
550 B
ArmAsm
15 lines
550 B
ArmAsm
// RUN: llvm-mc -triple x86_64-apple-darwin %s 2>&1 | FileCheck %s
|
|
# ensure that single '#' comments are worink as expected on x86 darwin
|
|
.p2align 3 # test single hash after align
|
|
// CHECK: .p2align 3
|
|
foo: # single hash should be ignored as comment
|
|
// CHECK-LABEL: foo:
|
|
movl %esp, %ebp # same after an instruction
|
|
// CHECK: movl %esp, %ebp
|
|
# movl %esp, %ebp ## start of the line
|
|
// CHECK-NOT: movl %esp, %ebp
|
|
# movl %esp, %ebp ## not quite start of the line
|
|
// CHECK-NOT: movl %esp, %ebp
|
|
bar:
|
|
// CHECK-LABEL: bar:
|