[llvm] r256084 - Hopefully fix debug-info-blocks.ll test on win32 bot
Keno Fischer via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 18 19:32:23 PST 2015
Author: kfischer
Date: Fri Dec 18 21:32:23 2015
New Revision: 256084
URL: http://llvm.org/viewvc/llvm-project?rev=256084&view=rev
Log:
Hopefully fix debug-info-blocks.ll test on win32 bot
llc_dwarf adds an mtriple, which forces this to use COFF, causing
the test to fail. Hopefully using regular llc without the triple
will work fine everywhere
Modified:
llvm/trunk/test/CodeGen/ARM/debug-info-blocks.ll
Modified: llvm/trunk/test/CodeGen/ARM/debug-info-blocks.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/debug-info-blocks.ll?rev=256084&r1=256083&r2=256084&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/debug-info-blocks.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/debug-info-blocks.ll Fri Dec 18 21:32:23 2015
@@ -1,4 +1,4 @@
-; RUN: %llc_dwarf -filetype=obj -O0 < %s | llvm-dwarfdump - | FileCheck %s
+; RUN: llc -filetype=obj -O0 < %s | llvm-dwarfdump - | FileCheck %s
; debug_info content
; CHECK: DW_AT_name {{.*}} "foobar_func_block_invoke_0"
More information about the llvm-commits
mailing list