From 91028c0135e0f7d3b3e60005e5f5ca8bc8ded024 Mon Sep 17 00:00:00 2001 From: Dean Michael Berris Date: Thu, 14 Sep 2017 07:54:54 +0000 Subject: [PATCH] [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 --- test/DebugInfo/X86/xray-split-dwarf-interaction.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/DebugInfo/X86/xray-split-dwarf-interaction.ll b/test/DebugInfo/X86/xray-split-dwarf-interaction.ll index 2696e500146..2773a737f54 100644 --- a/test/DebugInfo/X86/xray-split-dwarf-interaction.ll +++ b/test/DebugInfo/X86/xray-split-dwarf-interaction.ll @@ -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