mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 21:05:51 +00:00
de9a1a2055
Accepting quotes is a property of an assembler, not of an object file. For example, ELF can support any names for sections and symbols, but the gnu assembler only accepts quotes in some contexts and llvm-mc in a few more. LLVM should not produce different symbols based on a guess about which assembler will be reading the code it is printing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194575 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
928 B
LLVM
32 lines
928 B
LLVM
; RUN: llc < %s -mtriple=x86_64-linux-gnu | FileCheck %s
|
|
|
|
define i32 @main(i32 %x) nounwind gc "ocaml" {
|
|
; CHECK: .text
|
|
; CHECK-NEXT: .globl "caml<stdin>__code_begin"
|
|
; CHECK-NEXT: "caml<stdin>__code_begin":
|
|
; CHECK-NEXT: .data
|
|
; CHECK-NEXT: .globl "caml<stdin>__data_begin"
|
|
; CHECK-NEXT: "caml<stdin>__data_begin":
|
|
|
|
%puts = tail call i32 @foo(i32 %x)
|
|
ret i32 0
|
|
|
|
; CHECK: .globl "caml<stdin>__code_end"
|
|
; CHECK-NEXT: "caml<stdin>__code_end":
|
|
; CHECK-NEXT: .data
|
|
; CHECK-NEXT: .globl "caml<stdin>__data_end"
|
|
; CHECK-NEXT: "caml<stdin>__data_end":
|
|
; CHECK-NEXT: .quad 0
|
|
; CHECK-NEXT: .globl "caml<stdin>__frametable"
|
|
; CHECK-NEXT: "caml<stdin>__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)
|