From: NAKAMURA Takumi Date: Tue, 9 Jun 2015 08:03:33 +0000 (+0000) Subject: llvm/test/DebugInfo/X86/expressions.ll: %llc_dwarf shouldn't be used with -mtriple... X-Git-Tag: llvmorg-3.7.0-rc1~2696 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d93855c82f72abbb39de1a36c4e52e9a3c4c9db7;p=platform%2Fupstream%2Fllvm.git 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". llvm-svn: 239390 --- diff --git a/llvm/test/DebugInfo/X86/expressions.ll b/llvm/test/DebugInfo/X86/expressions.ll index eb018d9..52c1b08 100644 --- a/llvm/test/DebugInfo/X86/expressions.ll +++ b/llvm/test/DebugInfo/X86/expressions.ll @@ -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