From: NAKAMURA Takumi Date: Sat, 6 Dec 2014 02:03:49 +0000 (+0000) Subject: llvm/test/CodeGen/X86/switch-jump-table.ll: Add explicit triple. Local labels have... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2dd9af9feb5e678b089c44e3b5e3256f4606124e;p=oota-llvm.git llvm/test/CodeGen/X86/switch-jump-table.ll: Add explicit triple. Local labels have a prefix "." for targeting i686-cygming. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223570 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/switch-jump-table.ll b/test/CodeGen/X86/switch-jump-table.ll index 7ae45b56641..a48dcd20bb7 100644 --- a/test/CodeGen/X86/switch-jump-table.ll +++ b/test/CodeGen/X86/switch-jump-table.ll @@ -1,4 +1,4 @@ -; RUN: llc -march=x86 < %s | FileCheck %s +; RUN: llc -mtriple=i686-unknown-unknown < %s | FileCheck %s ; An unreachable default destination is replaced with the most popular case label.