blob: 1103e9ba587e69fd8988cc7e0abc902484c8c57f [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm < %s | grep "\$0,\$1"
Lauro Ramos Venancio7695f702008-02-26 19:19:58 +00002
3void f() {
4 int d1, d2;
5 asm("%0,%1": "=r" (d1) : "r" (d2));
6}