R600: Add ISA documents to the CompilerWriterInfo page
[oota-llvm.git] / test / MC / AsmParser / macros-parsing.s
index ad195053eb8e6d9738a8b32bd48a1a0051ffe822..75aaac036ed1080f4217ce88ed3f3f0fda28d4ac 100644 (file)
@@ -1,14 +1,14 @@
-// RUN: not llvm-mc %s 2> %t.err
+// RUN: not llvm-mc -triple x86_64-apple-darwin10 %s 2> %t.err
 // RUN: FileCheck --check-prefix=CHECK-ERRORS %s < %t.err
 
 .macro .test0
 .endmacro
 
 .macros_off
-// CHECK-ERRORS: 9:1: warning: ignoring directive for now
+// CHECK-ERRORS: 9:1: error: unknown directive
 .test0
 .macros_on
-// CHECK-ERRORS: 12:1: error: macros are not yet supported
+
 .test0
 
 // CHECK-ERRORS: macro '.test0' is already defined