1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
21 lines
278 B
C++
21 lines
278 B
C++
// 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
|
|
}
|