blob: c5b36c7fed40c837da3bc16a5d23d1aa8d9c7723 [file] [log] [blame]
Chandler Carruthb2252332010-08-06 05:29:57 +00001// RUN: not %clang_cc1 -triple i386-apple-darwin10 -emit-obj %s -o /dev/null > %t 2>&1
Chris Lattner914803f2010-04-06 18:46:25 +00002// RUN: FileCheck %s < %t
3
4int test1(int X) {
Chris Lattnerfdc90252010-09-06 22:09:27 +00005// CHECK: error: invalid instruction mnemonic 'abc'
Chris Lattner914803f2010-04-06 18:46:25 +00006 __asm__ ("abc incl %0" : "+r" (X));
7 return X;
8}