[llvm] r240892 - Don't use %llc_dwarf for target-specific tests.
Benjamin Kramer
benny.kra at googlemail.com
Sat Jun 27 14:11:43 PDT 2015
Author: d0k
Date: Sat Jun 27 16:11:43 2015
New Revision: 240892
URL: http://llvm.org/viewvc/llvm-project?rev=240892&view=rev
Log:
Don't use %llc_dwarf for target-specific tests.
Should fix running them on windows.
Modified:
llvm/trunk/test/DebugInfo/AArch64/bitfields.ll
llvm/trunk/test/DebugInfo/X86/bitfields.ll
Modified: llvm/trunk/test/DebugInfo/AArch64/bitfields.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/AArch64/bitfields.ll?rev=240892&r1=240891&r2=240892&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/AArch64/bitfields.ll (original)
+++ llvm/trunk/test/DebugInfo/AArch64/bitfields.ll Sat Jun 27 16:11:43 2015
@@ -1,6 +1,5 @@
-; RUN: %llc_dwarf -mtriple aarch64_be-gnu-linux -O0 -filetype=obj -o %t_be.o %s
+; RUN: llc -mtriple aarch64_be-gnu-linux -O0 -filetype=obj -o %t_be.o %s
; RUN: llvm-dwarfdump -debug-dump=info %t_be.o | FileCheck %s
-; REQUIRES: object-emission
; Produced at -O0 from:
; struct bitfield {
Modified: llvm/trunk/test/DebugInfo/X86/bitfields.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/X86/bitfields.ll?rev=240892&r1=240891&r2=240892&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/X86/bitfields.ll (original)
+++ llvm/trunk/test/DebugInfo/X86/bitfields.ll Sat Jun 27 16:11:43 2015
@@ -1,6 +1,5 @@
-; RUN: %llc_dwarf -mtriple x86_64-apple-macosx -O0 -filetype=obj -o %t_le.o %s
+; RUN: llc -mtriple x86_64-apple-macosx -O0 -filetype=obj -o %t_le.o %s
; RUN: llvm-dwarfdump -debug-dump=info %t_le.o | FileCheck %s
-; REQUIRES: object-emission
; Produced at -O0 from:
; struct bitfield {
More information about the llvm-commits
mailing list