summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-02-19 16:51:44 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-02-19 16:51:44 +0000
commit063337309e71683fc57c049c10d03d4f8a2ce356 (patch)
tree685e367d08617a8c84728e4cb144d4d64056b31c /test
parent26a5c4dd3176a7e3a7cc9601d32ccad8f41d3104 (diff)
downloadllvm-063337309e71683fc57c049c10d03d4f8a2ce356.tar.gz
llvm-063337309e71683fc57c049c10d03d4f8a2ce356.tar.bz2
llvm-063337309e71683fc57c049c10d03d4f8a2ce356.tar.xz
Fix GCMetadaPrinter::finishAssembly not executed, patch by Yiannis Tsiouris.
Due to the execution order of doFinalization functions, the GC information were deleted before AsmPrinter::doFinalization was executed. Thus, the GCMetadataPrinter::finishAssembly was never called. The patch fixes that by moving the code of the GCInfoDeleter::doFinalization to Printer::doFinalization. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175528 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/GC/ocaml-gc.ll31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/CodeGen/X86/GC/ocaml-gc.ll b/test/CodeGen/X86/GC/ocaml-gc.ll
new file mode 100644
index 0000000000..44241a90d0
--- /dev/null
+++ b/test/CodeGen/X86/GC/ocaml-gc.ll
@@ -0,0 +1,31 @@
+; RUN: llc < %s -mtriple=x86_64-linux-gnu | FileCheck %s
+
+define i32 @main(i32 %x) nounwind gc "ocaml" {
+; CHECK: .text
+; CHECK-NEXT: .globl caml_3C_stdin_3E___code_begin
+; CHECK-NEXT: caml_3C_stdin_3E___code_begin:
+; CHECK-NEXT: .data
+; CHECK-NEXT: .globl caml_3C_stdin_3E___data_begin
+; CHECK-NEXT: caml_3C_stdin_3E___data_begin:
+
+ %puts = tail call i32 @foo(i32 %x)
+ ret i32 0
+
+; CHECK: .globl caml_3C_stdin_3E___code_end
+; CHECK-NEXT: caml_3C_stdin_3E___code_end:
+; CHECK-NEXT: .data
+; CHECK-NEXT: .globl caml_3C_stdin_3E___data_end
+; CHECK-NEXT: caml_3C_stdin_3E___data_end:
+; CHECK-NEXT: .quad 0
+; CHECK-NEXT: .globl caml_3C_stdin_3E___frametable
+; CHECK-NEXT: caml_3C_stdin_3E___frametable:
+; CHECK-NEXT: .short 1
+; CHECK-NEXT: .align 8
+; CHECK-NEXT: # live roots for main
+; CHECK-NEXT: .quad .Ltmp0
+; CHECK-NEXT: .short 8
+; CHECK-NEXT: .short 0
+; CHECK-NEXT: .align 8
+}
+
+declare i32 @foo(i32)