[llvm] r239390 - llvm/test/DebugInfo/X86/expressions.ll: %llc_dwarf shouldn't be used with -mtriple, since %llc_dwarf implies the triple.
NAKAMURA Takumi
geek4civic at gmail.com
Tue Jun 9 01:03:33 PDT 2015
Author: chapuni
Date: Tue Jun 9 03:03:33 2015
New Revision: 239390
URL: http://llvm.org/viewvc/llvm-project?rev=239390&view=rev
Log:
llvm/test/DebugInfo/X86/expressions.ll: %llc_dwarf shouldn't be used with -mtriple, since %llc_dwarf implies the triple.
In this case, use plain "llc".
Modified:
llvm/trunk/test/DebugInfo/X86/expressions.ll
Modified: llvm/trunk/test/DebugInfo/X86/expressions.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/X86/expressions.ll?rev=239390&r1=239389&r2=239390&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/X86/expressions.ll (original)
+++ llvm/trunk/test/DebugInfo/X86/expressions.ll Tue Jun 9 03:03:33 2015
@@ -1,6 +1,6 @@
; REQUIRES: object-emission
-; RUN: %llc_dwarf -mtriple x86_64-apple-darwin14.0.0-elf -filetype=obj %s -o %t
-; RUN: %llc_dwarf -mtriple x86_64-apple-darwin14.0.0-elf -O0 -filetype=obj %s -o %t0
+; RUN: llc -mtriple x86_64-apple-darwin14.0.0-elf -filetype=obj %s -o %t
+; RUN: llc -mtriple x86_64-apple-darwin14.0.0-elf -O0 -filetype=obj %s -o %t0
; RUN: llvm-dwarfdump -debug-dump=loc %t | FileCheck %s
; RUN: llvm-dwarfdump -debug-dump=loc %t0 | FileCheck -check-prefix CHECK-O0 %s
More information about the llvm-commits
mailing list