Files
clang-p2996/clang/test/CodeGenCXX/debug-info-member.cpp
Daniel Dunbar b3675dd660 tests: Remove some stray and unused -cc1 flags. These tests appear to be written
to go through the driver.

llvm-svn: 143791
2011-11-05 05:41:57 +00:00

7 lines
103 B
C++

// RUN: %clang -fverbose-asm -g -S %s -o - | grep DW_ACCESS_public
class A {
public:
int x;
};
A a;