[llvm] r337423 - Fix some tests that had (implied) duplicate mtriple

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 18 13:37:01 PDT 2018


Author: dblaikie
Date: Wed Jul 18 13:37:01 2018
New Revision: 337423

URL: http://llvm.org/viewvc/llvm-project?rev=337423&view=rev
Log:
Fix some tests that had (implied) duplicate mtriple

I 'fixed' one of these to use %llc_dwarf unnecessarily, so switch them
both back to using llc directly.

Modified:
    llvm/trunk/test/DebugInfo/X86/range_reloc.ll
    llvm/trunk/test/DebugInfo/X86/range_reloc_base.ll

Modified: llvm/trunk/test/DebugInfo/X86/range_reloc.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/X86/range_reloc.ll?rev=337423&r1=337422&r2=337423&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/X86/range_reloc.ll (original)
+++ llvm/trunk/test/DebugInfo/X86/range_reloc.ll Wed Jul 18 13:37:01 2018
@@ -1,6 +1,6 @@
-; RUN: %llc_dwarf -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - -use-dwarf-ranges-base-address-specifier | FileCheck --check-prefix=COMMON --check-prefix=BASE %s
-; RUN: %llc_dwarf -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - | FileCheck --check-prefix=COMMON --check-prefix=NOBASE %s
-; RUN: %llc_dwarf -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - -dwarf-version 5 | FileCheck --check-prefix=DWARF5 %s
+; RUN: llc -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - -use-dwarf-ranges-base-address-specifier | FileCheck --check-prefix=COMMON --check-prefix=BASE %s
+; RUN: llc -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - | FileCheck --check-prefix=COMMON --check-prefix=NOBASE %s
+; RUN: llc -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - -dwarf-version 5 | FileCheck --check-prefix=DWARF5 %s
 
 ; Group ranges in a range list that apply to the same section and use a base
 ; address selection entry to reduce the number of relocations to one reloc per

Modified: llvm/trunk/test/DebugInfo/X86/range_reloc_base.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/X86/range_reloc_base.ll?rev=337423&r1=337422&r2=337423&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/X86/range_reloc_base.ll (original)
+++ llvm/trunk/test/DebugInfo/X86/range_reloc_base.ll Wed Jul 18 13:37:01 2018
@@ -1,6 +1,6 @@
-; RUN: %llc_dwarf -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - -use-dwarf-ranges-base-address-specifier | FileCheck %s
-; RUN: %llc_dwarf -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - | FileCheck %s
-; RUN: %llc_dwarf -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - -dwarf-version 5 | FileCheck --check-prefix=DWARF5 %s
+; RUN: llc -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - -use-dwarf-ranges-base-address-specifier | FileCheck %s
+; RUN: llc -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - | FileCheck %s
+; RUN: llc -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - -dwarf-version 5 | FileCheck --check-prefix=DWARF5 %s
 
 ; CHECK: {{^.Ldebug_ranges0}}
 ; CHECK-NEXT:   .quad   .Ltmp0-.Lfunc_begin0




More information about the llvm-commits mailing list