mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
8df74ef6a8
Summary: The lit feature object-emission was added because Hexagon did not support the integrated assembler, so some tests needed to be turned off with a Hexagon target. Hexagon now supports the integrated assembler, so this feature can be removed. Reviewers: bcain, kparzysz, jverma, whitequark, JDevlieghere Reviewed By: JDevlieghere Subscribers: mehdi_amini, hiraditya, steven_wu, dexonsmith, arphaman, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D73568
21 lines
826 B
Plaintext
21 lines
826 B
Plaintext
# RUN: dsymutil -no-output %p/../Inputs/fat-test.arm.dylib -o /dev/null -verbose 2>&1 | FileCheck %s
|
|
|
|
# We detect thumb triples from the binaries, because those are the only ones
|
|
# that are guaranteed to be able to generate a Target instance (for example
|
|
# we would detect armv7m-apple-darwin as non-thumb triple, but you can't
|
|
# instantiate a Target from that). In the user-visible architecture names, and
|
|
# in the lipo invocation, we need to rewrite the thumb arch names to the arm
|
|
# ones.
|
|
|
|
# CHECK: warning: no debug symbols in executable (-arch armv7)
|
|
|
|
# CHECK: warning: no debug symbols in executable (-arch armv7s)
|
|
|
|
# CHECK: warning: no debug symbols in executable (-arch arm64)
|
|
|
|
# CHECK: Running lipo
|
|
# CHECK-NEXT: lipo -create
|
|
# CHECK-SAME: -segalign armv7
|
|
# CHECK-SAME: -segalign armv7s
|
|
# CHECK-SAME: -segalign arm64
|