aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Sema/heinous-extensions-on.c
blob: 79c8fe14eefd3d0cf6acb40421ee522199f83c1e (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 %s -verify -Wno-error=invalid-gnu-asm-cast

void foo(void) {
  int a;
  // PR3788
  asm("nop" : : "m"((int)(a))); // expected-warning {{invalid use of a cast in an inline asm context requiring an lvalue}}
  // PR3794
  asm("nop" : "=r"((unsigned)a)); // expected-warning {{invalid use of a cast in an inline asm context requiring an lvalue}}
}