diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-03-19 15:03:47 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-03-19 15:03:47 +0000 |
commit | 9a2f5d70dfb0eb739076d5bad1a779de9b201930 (patch) | |
tree | 42f34cf36eef05ecca77beb2c076b321028dd62f /test/CodeGenCXX/constructor-alias.cpp | |
parent | d8e6d6da90fd5a715c9e5cb676abbb8c3878c85a (diff) |
Don't try to set attributes in alias, they have none.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177402 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/constructor-alias.cpp')
-rw-r--r-- | test/CodeGenCXX/constructor-alias.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGenCXX/constructor-alias.cpp b/test/CodeGenCXX/constructor-alias.cpp new file mode 100644 index 0000000000..18a4777501 --- /dev/null +++ b/test/CodeGenCXX/constructor-alias.cpp @@ -0,0 +1,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 = alias void (%struct.B*)* @_ZN1BC2Ev |