[llvm] r330414 - [DebugInfo] Fix for split dwarf test on Windows (NFC)

Andrew Ng via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 20 03:44:42 PDT 2018


Author: anng
Date: Fri Apr 20 03:44:42 2018
New Revision: 330414

URL: http://llvm.org/viewvc/llvm-project?rev=330414&view=rev
Log:
[DebugInfo] Fix for split dwarf test on Windows (NFC)

On Windows, %llc_dwarf automatically adds -mtriple causing this test to
error. Changed %llc_dwarf to llc.

Differential Revision: https://reviews.llvm.org/D45869

Modified:
    llvm/trunk/test/DebugInfo/X86/debug-names-split-dwarf.ll

Modified: llvm/trunk/test/DebugInfo/X86/debug-names-split-dwarf.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/X86/debug-names-split-dwarf.ll?rev=330414&r1=330413&r2=330414&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/X86/debug-names-split-dwarf.ll (original)
+++ llvm/trunk/test/DebugInfo/X86/debug-names-split-dwarf.ll Fri Apr 20 03:44:42 2018
@@ -1,7 +1,7 @@
 ; REQUIRES: object-emission
 
 ; Verify that DWARF v5 accelerator tables work with split-dwarf.
-; RUN: %llc_dwarf -mtriple x86_64-pc-linux -split-dwarf-file=foo.dwo \
+; RUN: llc -mtriple x86_64-pc-linux -split-dwarf-file=foo.dwo \
 ; RUN:   -accel-tables=Dwarf -filetype=obj -o %t < %s
 ; RUN: llvm-dwarfdump -debug-names - <%t | FileCheck %s
 




More information about the llvm-commits mailing list