From: Alex Lorenz Date: Thu, 16 Jul 2015 00:58:33 +0000 (+0000) Subject: Fix broken testcase from r242358. X-Git-Tag: studio-1.4~2346 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e2041b68b1d3c734f946e722917935c97c449ede;p=platform%2Fupstream%2Fllvm.git 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. llvm-svn: 242370 --- diff --git a/llvm/test/CodeGen/MIR/X86/jump-table-info.mir b/llvm/test/CodeGen/MIR/X86/jump-table-info.mir index a52a872..25cf924 100644 --- a/llvm/test/CodeGen/MIR/X86/jump-table-info.mir +++ b/llvm/test/CodeGen/MIR/X86/jump-table-info.mir @@ -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.