brintos

brintos / llvm-project-archived public Read only

0
0
Text · 382 B · 6a3a1b4 Raw
16 lines · c
1// RUN: %clang_cc1 %s -triple=i686-pc-linux-gnu -emit-llvm -o - > %t12// RUN: grep "ax" %t13// RUN: grep "bx" %t14// RUN: grep "cx" %t15// RUN: grep "dx" %t16// RUN: grep "di" %t17// RUN: grep "si" %t18// RUN: grep "st" %t19// RUN: grep "st(1)" %t110 11void test1(void) {12  int d1, d2;13  asm ("" : "=a" (d1), "=b" (d2) :14       "c" (0), "d" (0), "S" (0), "D" (0), "t" (0), "u" (0));15}16