summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/constructor-alias.cpp
blob: ee2e57b711c9633fd06508e31fa43ea30c519e84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -emit-llvm -triple mipsel--linux-gnu -mconstructor-aliases -o - %s | FileCheck %s

// The target attribute code used to get confused with aliases. Make sure
// we don't crash when an alias is used.

struct B {
  B();
};
B::B() {
}

// CHECK: @_ZN1BC1Ev = unnamed_addr alias void (%struct.B*), void (%struct.B*)* @_ZN1BC2Ev
OpenPOWER on IntegriCloud