add a testcase that the integrated assembler rejects, this verifies

that the integrated assembler is working.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100545 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2010-04-06 18:46:25 +00:00
Родитель 6da9eb6616
Коммит 914803f5d5
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,8 @@
// RUN: not %clang_cc1 -triple i386-apple-darwin10 -emit-obj %s > %t 2>&1
// RUN: FileCheck %s < %t
int test1(int X) {
// CHECK: error: unrecognized instruction
__asm__ ("abc incl %0" : "+r" (X));
return X;
}