summaryrefslogtreecommitdiff
path: root/test/CodeGen/SPARC/constructor.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SPARC/constructor.ll')
-rw-r--r--test/CodeGen/SPARC/constructor.ll29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/CodeGen/SPARC/constructor.ll b/test/CodeGen/SPARC/constructor.ll
new file mode 100644
index 0000000000000..0d2374d7e7d37
--- /dev/null
+++ b/test/CodeGen/SPARC/constructor.ll
@@ -0,0 +1,29 @@
+; RUN: llc -mtriple sparc-sun-solaris2.11 -use-ctors < %s | FileCheck --check-prefix=CTOR %s
+; RUN: llc -mtriple sparc-sun-solaris2.11 < %s | FileCheck --check-prefix=INIT-ARRAY %s
+@llvm.global_ctors = appending global [2 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @f, i8* null}, { i32, void ()*, i8* } { i32 15, void ()* @g, i8* @v }]
+
+@v = weak_odr global i8 0
+
+define void @f() {
+entry:
+ ret void
+}
+
+define void @g() {
+entry:
+ ret void
+}
+
+; CTOR: .section .ctors.65520,#alloc,#write
+; CTOR-NEXT: .p2align 2
+; CTOR-NEXT: .word g
+; CTOR-NEXT: .section .ctors,#alloc,#write
+; CTOR-NEXT: .p2align 2
+; CTOR-NEXT: .word f
+
+; INIT-ARRAY: .section .init_array.15,#alloc,#write
+; INIT-ARRAY-NEXT: .p2align 2
+; INIT-ARRAY-NEXT: .word g
+; INIT-ARRAY-NEXT: .section .init_array,#alloc,#write
+; INIT-ARRAY-NEXT: .p2align 2
+; INIT-ARRAY-NEXT: .word f