aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2008-02-26-inline-asm-bug.c
blob: 668b06c0d18b0021e869dcf7cdec8a819920a59a (plain)
1
2
3
4
5
6
// RUN: clang -emit-llvm < %s | grep "\$0,\$1"

void f() {
  int d1, d2;
  asm("%0,%1": "=r" (d1) : "r" (d2));
}