summaryrefslogtreecommitdiff
path: root/test/Sema/arm-asm.c
blob: 3fc0eeb7543ab7275ba9a1b0d2ac69023426a747 (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 %s -triple armv7-apple-darwin -verify -fsyntax-only

void f (void) {
  int Val;
  asm volatile ("lw (r1), %0[val]": "=&b"(Val)); // expected-error {{invalid output constraint '=&b' in asm}}
  return;
}