xref: /llvm-project/clang/test/CodeGen/2008-02-26-inline-asm-bug.c (revision 1ea584377e7897f7df5302ed9cd378d17be14fbf)
1 // RUN: %clang_cc1 -emit-llvm < %s | grep "\$0,\$1"
2 
f(void)3 void f(void) {
4   int d1, d2;
5   asm("%0,%1": "=r" (d1) : "r" (d2));
6 }
7