summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaCXX/asm.cpp
blob: cc2e6e75ca14ffb2f849e0602f6be8327e65fa9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -fsyntax-only -verify %s

struct A
{
    ~A();
};
int foo(A);

void bar()
{
    A a;
    asm("" : : "r"(foo(a)) ); // rdar://8540491
}
OpenPOWER on IntegriCloud