mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 11:50:47 -05:00
6 lines
118 B
C
6 lines
118 B
C
// RUN: %clang_cc1 -emit-llvm < %s | grep "\$0,\$1"
|
|
|
|
void f() {
|
|
int d1, d2;
|
|
asm("%0,%1": "=r" (d1) : "r" (d2));
|
|
}
|