2011-02-20 13:06:31 +00:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2010-03-21 10:50:08 +00:00
|
|
|
// CHECK: @test2 = alias i32 ()* @_Z5test1v
|
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
// CHECK: define i32 @_Z3foov() [[NUW:#[0-9]+]] align 1024
|
2009-10-14 18:03:49 +00:00
|
|
|
int foo() __attribute__((aligned(1024)));
|
|
|
|
int foo() { }
|
|
|
|
|
|
|
|
class C {
|
|
|
|
virtual void bar1() __attribute__((aligned(1)));
|
|
|
|
virtual void bar2() __attribute__((aligned(2)));
|
|
|
|
virtual void bar3() __attribute__((aligned(1024)));
|
2012-12-02 13:20:44 +00:00
|
|
|
void bar4() __attribute__((aligned(1024)));
|
2009-10-14 18:03:49 +00:00
|
|
|
} c;
|
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
// CHECK: define void @_ZN1C4bar1Ev(%class.C* %this) unnamed_addr [[NUW]] align 2
|
2009-10-14 18:03:49 +00:00
|
|
|
void C::bar1() { }
|
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
// CHECK: define void @_ZN1C4bar2Ev(%class.C* %this) unnamed_addr [[NUW]] align 2
|
2009-10-14 18:03:49 +00:00
|
|
|
void C::bar2() { }
|
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
// CHECK: define void @_ZN1C4bar3Ev(%class.C* %this) unnamed_addr [[NUW]] align 1024
|
2009-10-14 18:03:49 +00:00
|
|
|
void C::bar3() { }
|
2010-03-21 10:50:08 +00:00
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
// CHECK: define void @_ZN1C4bar4Ev(%class.C* %this) [[NUW]] align 1024
|
2012-12-02 13:20:44 +00:00
|
|
|
void C::bar4() { }
|
|
|
|
|
2010-03-21 10:50:08 +00:00
|
|
|
// PR6635
|
2013-12-22 00:07:40 +00:00
|
|
|
// CHECK-LABEL: define i32 @_Z5test1v()
|
2010-03-21 10:50:08 +00:00
|
|
|
int test1() { return 10; }
|
|
|
|
// CHECK at top of file
|
|
|
|
extern "C" int test2() __attribute__((alias("_Z5test1v")));
|
2013-04-08 18:45:10 +00:00
|
|
|
|
|
|
|
// CHECK: attributes [[NUW]] = { nounwind{{.*}} }
|