summaryrefslogtreecommitdiff
path: root/test/Sema/heinous-extensions-on.c
blob: 5b00407b17365bc8222aa34b6caa13ee6684ec61 (plain)
1
2
3
4
5
6
7
8
9
// 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}}
}