1 # RUN: llvm-mc -triple i386 %s | FileCheck %s
2 # RUN: not llvm-mc -triple i386 --defsym ERR=1 %s 2>&1 | FileCheck %s --check-prefix=ERR
6 # CHECK: 2.718281828459045235
8 .print "2.718281828459045235"
11 # CHECK-ERR: :[[#@LINE+2]]:8: expected double quoted string after .print
16 # ERR: :[[#@LINE+1]]:12: error: expected newline
17 .print "a" "misplaced-string"