aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/member-alignment.cpp
blob: 43ed5e28e8843c64cee3e8a9dc18aa9739ae15b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple %s -o - | FileCheck %s

// 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
}