forked from OSchip/llvm-project
[ELF] Fix the broken PPC test
This is related to the change in handling of entry point symbols. Differential Revision: https://reviews.llvm.org/D27500 llvm-svn: 288880
This commit is contained in:
parent
8485fa096e
commit
7173340e1f
|
@ -26,7 +26,7 @@
|
|||
// CHECK-NEXT: Type: SharedObject (0x3)
|
||||
// CHECK-NEXT: Machine: EM_PPC (0x14)
|
||||
// CHECK-NEXT: Version: 1
|
||||
// CHECK-NEXT: Entry: 0x0
|
||||
// CHECK-NEXT: Entry: 0x1000
|
||||
// CHECK-NEXT: ProgramHeaderOffset: 0x34
|
||||
// CHECK-NEXT: SectionHeaderOffset: 0x20AC
|
||||
// CHECK-NEXT: Flags [ (0x0)
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
|
||||
# REQUIRES: x86
|
||||
|
||||
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
|
||||
# RUN: ld.lld -shared --gc-sections -o %t1 %t
|
||||
# RUN: llvm-readobj --elf-output-style=GNU --file-headers --symbols %t1
|
||||
# | FileCheck %s
|
||||
|
|
Loading…
Reference in New Issue