blob: 7bdea97338237baf3493de3eaa61d448267cbf09 [file] [log] [blame]
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +00001// RUN: clang %s -triple=i686-pc-linux-gnu -emit-llvm -o - > %t1
Argyrios Kyrtzidisc577a0e2008-06-12 12:40:02 +00002// RUN: grep "ax" %t1 &&
3// RUN: grep "bx" %t1 &&
4// RUN: grep "cx" %t1 &&
5// RUN: grep "dx" %t1 &&
6// RUN: grep "di" %t1 &&
7// RUN: grep "si" %t1 &&
8// RUN: grep "st" %t1 &&
Lauro Ramos Venancioa5694b82008-02-26 18:33:46 +00009// RUN: grep "st(1)" %t1
10
11void f() {
12 int d1, d2;
13 asm ("" : "=a" (d1), "=b" (d2) :
14 "c" (0), "d" (0), "S" (0), "D" (0), "t" (0), "u" (0));
15}