[llvm] r242370 - Fix broken testcase from r242358.
Alex Lorenz
arphaman at gmail.com
Wed Jul 15 17:58:33 PDT 2015
Author: arphaman
Date: Wed Jul 15 19:58:33 2015
New Revision: 242370
URL: http://llvm.org/viewvc/llvm-project?rev=242370&view=rev
Log:
Fix broken testcase from r242358.
The testcase failed on non X86 targets, because I forgot to pass the
'-march=x86-64' option into llc for one of the X86 specific tests.
Modified:
llvm/trunk/test/CodeGen/MIR/X86/jump-table-info.mir
Modified: llvm/trunk/test/CodeGen/MIR/X86/jump-table-info.mir
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/MIR/X86/jump-table-info.mir?rev=242370&r1=242369&r2=242370&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/MIR/X86/jump-table-info.mir (original)
+++ llvm/trunk/test/CodeGen/MIR/X86/jump-table-info.mir Wed Jul 15 19:58:33 2015
@@ -1,4 +1,4 @@
-# RUN: llc -start-after branch-folder -stop-after branch-folder -o /dev/null %s | FileCheck %s
+# RUN: llc -march=x86-64 -start-after branch-folder -stop-after branch-folder -o /dev/null %s | FileCheck %s
# This test ensures that the MIR parser parses the jump table info and jump
# table operands correctly.
More information about the llvm-commits
mailing list