[llvm] r320164 - [DebugInfo] Use llc instead of llc_dwarf to fix this test.
Davide Italiano via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 8 09:15:50 PST 2017
Author: davide
Date: Fri Dec 8 09:15:50 2017
New Revision: 320164
URL: http://llvm.org/viewvc/llvm-project?rev=320164&view=rev
Log:
[DebugInfo] Use llc instead of llc_dwarf to fix this test.
We work around the fact that some platforms add a triple when
they expand llc_dwarf in lit.
Modified:
llvm/trunk/test/DebugInfo/X86/nodebug.ll
Modified: llvm/trunk/test/DebugInfo/X86/nodebug.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/X86/nodebug.ll?rev=320164&r1=320163&r2=320164&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/X86/nodebug.ll (original)
+++ llvm/trunk/test/DebugInfo/X86/nodebug.ll Fri Dec 8 09:15:50 2017
@@ -1,6 +1,6 @@
; REQUIRES: object-emission
-; RUN: %llc_dwarf < %s -filetype=obj -mtriple=x86_64-apple-darwin | llvm-dwarfdump -v - | FileCheck %s
+; RUN: llc < %s -filetype=obj -mtriple=x86_64-apple-darwin | llvm-dwarfdump -v - | FileCheck %s
; Test that a nodebug function (a function not appearing in the debug info IR
; metadata subprogram list) with DebugLocs on its IR doesn't cause crashes/does
More information about the llvm-commits
mailing list