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