Migrate from llvm/test/FrontendC++.

llvm-svn: 137765
This commit is contained in:
Eric Christopher 2011-08-16 21:41:38 +00:00
parent 74733d2e12
commit f1b912b88e
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
// XFAIL: arm,powerpc
// rdar://7268289
class t {
public:
virtual void foo(void);
void bar(void);
};
void
t::bar(void) {
// CHECK: _ZN1t3barEv{{.*}} align 2
}
void
t::foo(void) {
// CHECK: _ZN1t3fooEv{{.*}} align 2
}