mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
19 lines
428 B
ArmAsm
19 lines
428 B
ArmAsm
# RUN: llvm-mc -triple i386 %s | FileCheck %s
|
|
# RUN: not llvm-mc -triple i386 --defsym ERR=1 %s 2>&1 | FileCheck %s --check-prefix=ERR
|
|
|
|
T1:
|
|
# CHECK: e
|
|
# CHECK: 2.718281828459045235
|
|
.print "e"
|
|
.print "2.718281828459045235"
|
|
|
|
.ifdef ERR
|
|
# CHECK-ERR: :[[#@LINE+2]]:8: expected double quoted string after .print
|
|
.altmacro
|
|
.print <pi>
|
|
.noaltmacro
|
|
|
|
# ERR: :[[#@LINE+1]]:12: error: expected newline
|
|
.print "a" "misplaced-string"
|
|
.endif
|