Add test for constructor and destructor sections.
authorLauro Ramos Venancio <lauro.venancio@gmail.com>
Thu, 4 Jan 2007 14:41:33 +0000 (14:41 +0000)
committerLauro Ramos Venancio <lauro.venancio@gmail.com>
Thu, 4 Jan 2007 14:41:33 +0000 (14:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32873 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/ARM/ctors_dtors.ll [new file with mode: 0644]

diff --git a/test/CodeGen/ARM/ctors_dtors.ll b/test/CodeGen/ARM/ctors_dtors.ll
new file mode 100644 (file)
index 0000000..af15578
--- /dev/null
@@ -0,0 +1,16 @@
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -o %t.s -f &&
+; RUN: grep '\.section \.ctors,"aw",.progbits' %t.s | grep % &&
+; RUN: grep '\.section \.dtors,"aw",.progbits' %t.s | grep %
+
+%llvm.global_ctors = appending global [1 x { int, void ()* }] [ { int, void ()* } { int 65535, void ()* %__mf_init } ]         ; <[1 x { int, void ()* }]*> [#uses=0]
+%llvm.global_dtors = appending global [1 x { int, void ()* }] [ { int, void ()* } { int 65535, void ()* %__mf_fini } ]         ; <[1 x { int, void ()* }]*> [#uses=0]
+
+void %__mf_init() {
+entry:
+       ret void
+}
+
+void %__mf_fini() {
+entry:
+       ret void
+}