[llvm] 416fd03 - [DebugInfo] Follow up to ee3eee71e, x86 tests need an x86 triple

Jeremy Morse via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 25 08:44:38 PDT 2021


Author: Jeremy Morse
Date: 2021-10-25T16:43:50+01:00
New Revision: 416fd03708d49b66900ef629c733fbbad2a602e2

URL: https://github.com/llvm/llvm-project/commit/416fd03708d49b66900ef629c733fbbad2a602e2
DIFF: https://github.com/llvm/llvm-project/commit/416fd03708d49b66900ef629c733fbbad2a602e2.diff

LOG: [DebugInfo] Follow up to ee3eee71e, x86 tests need an x86 triple

Added: 
    

Modified: 
    llvm/test/DebugInfo/MIR/InstrRef/memory-operand-folding-tieddef.mir
    llvm/test/DebugInfo/MIR/InstrRef/memory-operand-folding.mir
    llvm/test/DebugInfo/MIR/InstrRef/memory-operand-load-folding.mir
    llvm/test/DebugInfo/MIR/InstrRef/memory-operand-tracking.mir

Removed: 
    


################################################################################
diff  --git a/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-folding-tieddef.mir b/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-folding-tieddef.mir
index 76bd8e239de4..14c95f35fef8 100644
--- a/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-folding-tieddef.mir
+++ b/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-folding-tieddef.mir
@@ -1,5 +1,6 @@
 # RUN: llc %s -o - -experimental-debug-variable-locations \
 # RUN:    -start-before=x86-flags-copy-lowering -stop-after=virtregrewriter \
+# RUN:    -mtriple x86_64-unknown-unknown \
 # RUN: | FileCheck %s
 #
 # This test is for stack spill folding -- the INC32r near the end of the MIR

diff  --git a/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-folding.mir b/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-folding.mir
index 3a7eaa1fbb5e..2c01180092bd 100644
--- a/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-folding.mir
+++ b/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-folding.mir
@@ -1,5 +1,6 @@
 # RUN: llc %s -o - -experimental-debug-variable-locations \
 # RUN:    -start-before=x86-flags-copy-lowering -stop-after=virtregrewriter \
+# RUN:    -mtriple x86_64-unknown-unknown \
 # RUN: | FileCheck %s
 #
 # This test is for stack spill folding -- the SETCC near the start of the MIR

diff  --git a/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-load-folding.mir b/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-load-folding.mir
index 981de3d0279e..f204094c3288 100644
--- a/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-load-folding.mir
+++ b/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-load-folding.mir
@@ -1,5 +1,6 @@
 # RUN: llc %s -o - -experimental-debug-variable-locations \
 # RUN:     -start-before=phi-node-elimination -stop-after=virtregrewriter \
+# RUN:    -mtriple x86_64-unknown-unknown \
 # RUN:  | FileCheck %s
 #
 # Test that when a load gets folded into an instruction (the CVTTSS2SIrr below)

diff  --git a/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-tracking.mir b/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-tracking.mir
index 861647fd7966..c7236f5e23c3 100644
--- a/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-tracking.mir
+++ b/llvm/test/DebugInfo/MIR/InstrRef/memory-operand-tracking.mir
@@ -1,4 +1,7 @@
-# RUN: llc %s -march=x86-64 -run-pass=livedebugvalues -experimental-debug-variable-locations -o - 2>&1 | FileCheck %s
+# RUN: llc %s -march=x86-64 -run-pass=livedebugvalues \
+# RUN:      -mtriple x86_64-unknown-unknown \
+# RUN:      -experimental-debug-variable-locations -o - 2>&1 \
+# RUN: | FileCheck %s
 #
 # Test that memory operands of instructions are interpreted by LiveDebugValues:
 # if an instruction reference is substituted to a memory operand, we should be


        


More information about the llvm-commits mailing list