hanchenye-llvm-project/clang/test/Sema/heinous-extensions-off.c

11 lines
319 B
C

// RUN: %clang_cc1 %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}}
}