[XRay][DebugInfo] Remove -debug-compile from test invocation of llc

This breaks bootstrap builds, and is actually unnecessary. Tested
locally and it seems we can remove -debug-comile just fine.

Follow-up to D37791.

llvm-svn: 313238
This commit is contained in:
Dean Michael Berris 2017-09-14 07:54:54 +00:00
parent 682cfc1d4c
commit b21f580ddc
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
; RUN: %llc_dwarf -split-dwarf-file=input.dwo -O3 \
; RUN: -function-sections -data-sections \
; RUN: -relocation-model=pic -filetype=asm \
; RUN: -generate-type-units -debug-compile -o - %s | \
; RUN: -generate-type-units -o - %s | \
; RUN: FileCheck %s --check-prefix=CHECK-ASM
; RUN: %llc_dwarf -split-dwarf-file=input.dwo -O3 \
; RUN: -function-sections -data-sections \
; RUN: -relocation-model=pic -filetype=obj \
; RUN: -generate-type-units -debug-compile -o - %s | \
; RUN: -generate-type-units -o - %s | \
; RUN: llvm-readelf -sections | \
; RUN: FileCheck %s --check-prefix=CHECK-ELF
; Created from `clang++ -fxray-instrument -gsplit-dwarf -fdebug-types-section