mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-10 18:26:02 +00:00
For biendian targets like ARM and AArch64, it is useful to have the output of the llvm-dwarfdump and llvm-objdump report the endianness used when the object files were generated. Patch by Charlie Turner. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218408 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
786 B
LLVM
19 lines
786 B
LLVM
; RUN: llc -O0 -filetype=obj -o %t1 < %s
|
|
; RUN: llvm-dwarfdump %t1 | FileCheck %s
|
|
|
|
; CHECK: file format ELF64-aarch64-little
|
|
|
|
target datalayout = "e-m:e-i64:64-i128:128-n32:64-S128"
|
|
target triple = "aarch64-none--eabi"
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!3, !4}
|
|
!llvm.ident = !{!5}
|
|
|
|
!0 = metadata !{i32 786449, metadata !1, i32 12, metadata !"clang version 3.6.0 ", i1 false, metadata !"", i32 0, metadata !2, metadata !2, metadata !2, metadata !2, metadata !2, metadata !"", i32 1} ; [ DW_TAG_compile_unit ] [/a/empty.c] [DW_LANG_C99]
|
|
!1 = metadata !{metadata !"empty.c", metadata !"/a"}
|
|
!2 = metadata !{}
|
|
!3 = metadata !{i32 2, metadata !"Dwarf Version", i32 4}
|
|
!4 = metadata !{i32 2, metadata !"Debug Info Version", i32 1}
|
|
!5 = metadata !{metadata !"clang version 3.6.0 "}
|