зеркало из https://github.com/microsoft/clang-1.git
11 строки
314 B
C
11 строки
314 B
C
|
// RUN: clang %s -verify
|
||
|
|
||
|
int foo() {
|
||
|
int a;
|
||
|
// PR3788
|
||
|
asm("nop" : : "m"((int)(a))); // expected-error {{cast in a inline asm context requiring an l-value}}
|
||
|
// PR3794
|
||
|
asm("nop" : "=r"((unsigned)a)); // expected-error {{cast in a inline asm context requiring an l-value}}
|
||
|
}
|
||
|
|