summaryrefslogtreecommitdiff
path: root/test/CodeGen/CellSPU
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2008-11-30 04:59:26 +0000
committerEli Friedman <eli.friedman@gmail.com>2008-11-30 04:59:26 +0000
commit86f874d9bb3722e81381e832eb4c867f562e308c (patch)
tree5a4390cee5831cdcbe3d01e1c413b10734d1749a /test/CodeGen/CellSPU
parent13441c57ec1b7b6422b659ffadcf8ef82b69b4bd (diff)
downloadllvm-86f874d9bb3722e81381e832eb4c867f562e308c.tar.gz
llvm-86f874d9bb3722e81381e832eb4c867f562e308c.tar.bz2
llvm-86f874d9bb3722e81381e832eb4c867f562e308c.tar.xz
APIntify a test which is potentially unsafe otherwise, and fix the
nearby FIXME. I'm not sure what the right way to fix the Cell test was; if the approach I used isn't okay, please let me know. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60277 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/CellSPU')
-rw-r--r--test/CodeGen/CellSPU/icmp16.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/CellSPU/icmp16.ll b/test/CodeGen/CellSPU/icmp16.ll
index bace031054..16bf0f9f62 100644
--- a/test/CodeGen/CellSPU/icmp16.ll
+++ b/test/CodeGen/CellSPU/icmp16.ll
@@ -204,7 +204,7 @@ entry:
define i16 @icmp_ult_immed04_i16(i16 %arg1, i16 %val1, i16 %val2) nounwind {
entry:
- %A = icmp ult i16 %arg1, 32768
+ %A = icmp ult i16 %arg1, 32769
%B = select i1 %A, i16 %val1, i16 %val2
ret i16 %B
}