Skip to content

Commit 7683a08

Browse files
author
Ted Woodward
committed
Remove lit feature object-emission
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
1 parent f1ceda4 commit 7683a08

File tree

130 files changed

+29
-182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+29
-182
lines changed

llvm/test/Bindings/OCaml/executionengine.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* RUN: %t/executable
44
* RUN: %ocamlopt -g -w +A -package llvm.executionengine -linkpkg %t/executionengine.ml -o %t/executable
55
* RUN: %t/executable
6-
* REQUIRES: native, object-emission
6+
* REQUIRES: native
77
* XFAIL: vg_leak
88
*)
99

llvm/test/CodeGen/Generic/dwarf-md5.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
; MD5 checksums provided by IR should be passed through to asm.
22
; They'll be emitted to an object file only for DWARF 5 or later.
33

4-
; REQUIRES: object-emission
54
; RUN: %llc_dwarf -dwarf-version 4 -filetype=asm -o - %s | FileCheck %s --check-prefix=ASM-4
65
; RUN: %llc_dwarf -dwarf-version 5 -filetype=asm -o - %s | FileCheck %s --check-prefix=ASM-5
76
; RUN: %llc_dwarf -dwarf-version 4 -filetype=obj -o %t4.o %s

llvm/test/CodeGen/Generic/dwarf-source.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
; Source text provided by IR should be passed through to asm.
22
; It is emitted to an object file only for DWARF 5 or later.
33

4-
; REQUIRES: object-emission
54
; RUN: %llc_dwarf -dwarf-version 4 -filetype=asm -o - %s | FileCheck %s --check-prefix=ASM-4
65
; RUN: %llc_dwarf -dwarf-version 5 -filetype=asm -o - %s | FileCheck %s --check-prefix=ASM-5
76
; RUN: %llc_dwarf -dwarf-version 4 -filetype=obj -o %t4.o %s

llvm/test/DebugInfo/AArch64/struct_by_value.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
; A by-value struct is a register-indirect value (breg).
22
; RUN: llc %s -filetype=obj -o - | llvm-dwarfdump - | FileCheck %s
3-
; REQUIRES: object-emission
43

54
; Test that the 'f' parameter is present, with a location, and that the
65
; expression for the location contains a DW_OP_breg

llvm/test/DebugInfo/ARM/bitfield.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
; RUN: %llc_dwarf -O0 -filetype=obj -o %t.o %s
22
; RUN: llvm-dwarfdump -v -debug-info %t.o | FileCheck %s
3-
; REQUIRES: object-emission
43
;
54
; Generated from:
65
; struct {

llvm/test/DebugInfo/ARM/float-args.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
; RUN: %llc_dwarf -filetype=obj -mattr=+vfp2 -float-abi=hard < %s | llvm-dwarfdump -debug-info - | FileCheck %s
22
; RUN: %llc_dwarf -filetype=obj -mattr=-vfp2 -float-abi=soft < %s | llvm-dwarfdump -debug-info - | FileCheck %s
3-
; REQUIRES: object-emission
43

54
; Generated by clang -O1 -g from the following C source:
65
; float foo(float p) {

llvm/test/DebugInfo/ARM/split-complex.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
; RUN: %llc_dwarf -O0 -filetype=obj -o %t.o %s
22
; RUN: llvm-dwarfdump -v -debug-info %t.o | FileCheck %s
3-
; REQUIRES: object-emission
43
target datalayout = "e-m:o-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
54
target triple = "thumbv7-apple-unknown-macho"
65

llvm/test/DebugInfo/ARM/sroa-complex.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
; RUN: opt -sroa -S -o - %s | FileCheck %s
2-
; REQUIRES: object-emission
32
target datalayout = "e-m:o-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
43
target triple = "thumbv7-apple-unknown-macho"
54

llvm/test/DebugInfo/Generic/2010-04-06-NestedFnDbgInfo.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
; REQUIRES: object-emission
2-
31
; RUN: %llc_dwarf -O0 -filetype=obj -o - < %s | llvm-dwarfdump -v -debug-info - | FileCheck %s
42
; Radar 7833483
53
; Do not emit a separate out-of-line definition DIE for the function-local 'foo'

llvm/test/DebugInfo/Generic/2010-05-10-MultipleCU.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
; REQUIRES: object-emission
2-
31
; RUN: %llc_dwarf -O0 -filetype=obj < %s | llvm-dwarfdump -debug-info - | FileCheck %s
42

53
; Check that two compile units are generated

0 commit comments

Comments
 (0)