blob: 43ed5e28e8843c64cee3e8a9dc18aa9739ae15b1 [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple %s -o - | FileCheck %s
Eric Christopherb5715822011-08-16 21:41:38 +00002
3// rdar://7268289
4
5class t {
6public:
7 virtual void foo(void);
8 void bar(void);
9};
10
11void
12t::bar(void) {
13// CHECK: _ZN1t3barEv{{.*}} align 2
14}
15
16void
17t::foo(void) {
18// CHECK: _ZN1t3fooEv{{.*}} align 2
19}