mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 11:16:07 +00:00

C_FILE symbols. To match the behavior of the assembler and the legacy compiler, this includes using the generic ".file" name for the C_FILE symbol and generating the actual file name in an auxiliary entry.
13 lines
536 B
LLVM
13 lines
536 B
LLVM
; RUN: llc -verify-machineinstrs -mtriple powerpc-ibm-aix-xcoff -filetype=obj -o %t.o < %s
|
|
; RUN: llvm-readobj --symbols %t.o | FileCheck --check-prefixes=OBJ,OBJ32 %s
|
|
; RUN: llc -verify-machineinstrs -mtriple powerpc64-ibm-aix-xcoff -filetype=obj -o %t64.o < %s
|
|
; RUN: llvm-readobj --symbols %t64.o | FileCheck --check-prefixes=OBJ,OBJ64 %s
|
|
|
|
source_filename = "1.cpp"
|
|
|
|
; OBJ: Name: .file
|
|
; OBJ: Source Language ID: TB_CPLUSPLUS (0x9)
|
|
; OBJ32: CPU Version ID: TCPU_COM (0x3)
|
|
; OBJ64: CPU Version ID: TCPU_PPC64 (0x2)
|
|
; OBJ: Name: 1.cpp
|