You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
320 B
10 lines
320 B
// RUN: %clang_cc1 %s -verify -fheinous-gnu-extensions
|
|
|
|
void foo() {
|
|
int a;
|
|
// PR3788
|
|
asm("nop" : : "m"((int)(a))); // expected-warning {{cast in an inline asm context requiring an l-value}}
|
|
// PR3794
|
|
asm("nop" : "=r"((unsigned)a)); // expected-warning {{cast in an inline asm context requiring an l-value}}
|
|
}
|