Let the integrated assembler understand .exitm, PR20426.
[oota-llvm.git] / test / MC / AsmParser / assignment.s
index 4e6916ad25b8f49c82a1ec103cbcdb34e3fcc5a6..73ce8600db0b6f2b95883c70883782120fa363f7 100644 (file)
@@ -1,7 +1,11 @@
-# RUN: llvm-mc %s | FileCheck %s
+# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
 
 # CHECK: TEST0:
 # CHECK: a = 0
-TEST0:  
+TEST0:
         a = 0
-        
\ No newline at end of file
+
+# CHECK: .globl        _f1
+# CHECK: _f1 = 0
+        .globl _f1
+        _f1 = 0