[llvm] r313238 - [XRay][DebugInfo] Remove -debug-compile from test invocation of llc
Dean Michael Berris via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 14 00:54:54 PDT 2017
Author: dberris
Date: Thu Sep 14 00:54:54 2017
New Revision: 313238
URL: http://llvm.org/viewvc/llvm-project?rev=313238&view=rev
Log:
[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.
Modified:
llvm/trunk/test/DebugInfo/X86/xray-split-dwarf-interaction.ll
Modified: llvm/trunk/test/DebugInfo/X86/xray-split-dwarf-interaction.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/X86/xray-split-dwarf-interaction.ll?rev=313238&r1=313237&r2=313238&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/X86/xray-split-dwarf-interaction.ll (original)
+++ llvm/trunk/test/DebugInfo/X86/xray-split-dwarf-interaction.ll Thu Sep 14 00:54:54 2017
@@ -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
More information about the llvm-commits
mailing list