summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2014-07-29 23:39:40 +0000
committerHans Wennborg <hans@hanshq.net>2014-07-29 23:39:40 +0000
commitef286f0ac74280747ec3f190a91cbb12cea59b04 (patch)
treeab5386311f0e9a62663b136d95fe8184bcf34fc5
parentd97455ba309cfd01eede1773660e7995e04105d9 (diff)
downloadllvm-ef286f0ac74280747ec3f190a91cbb12cea59b04.tar.gz
Merging r213880:
------------------------------------------------------------------------ r213880 | mren | 2014-07-24 10:18:33 -0700 (Thu, 24 Jul 2014) | 1 line Try to fix the bots. If this does not work, I am going to move it to X86 directory. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_35@214252 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/SimplifyCFG/switch-table-bug.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/SimplifyCFG/switch-table-bug.ll b/test/Transforms/SimplifyCFG/switch-table-bug.ll
index d2e19075935b..d0b8ab29d26b 100644
--- a/test/Transforms/SimplifyCFG/switch-table-bug.ll
+++ b/test/Transforms/SimplifyCFG/switch-table-bug.ll
@@ -1,6 +1,6 @@
-; RUN: opt -S -simplifycfg < %s | FileCheck %s
+; RUN: opt -S -simplifycfg < %s -mtriple=x86_64-apple-darwin12.0.0 | FileCheck %s
; rdar://17735071
-target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
+target datalayout = "e-p:64:64:64-S128-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f16:16:16-f32:32:32-f64:64:64-f128:128:128-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
target triple = "x86_64-apple-darwin12.0.0"
; When tableindex can't fit into i2, we should extend the type to i3.