aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-05-23 13:15:11 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-05-23 13:15:11 +0000
commitd14ce2f1fc41dcdcf43e612c5306351288920c7e (patch)
tree625d101cff1cfcbeae9c16a7ff3789e71e7c420f
parent5c22c8074404797f1313b1334757254fb5c6487a (diff)
downloadexternal_llvm-d14ce2f1fc41dcdcf43e612c5306351288920c7e.zip
external_llvm-d14ce2f1fc41dcdcf43e612c5306351288920c7e.tar.gz
external_llvm-d14ce2f1fc41dcdcf43e612c5306351288920c7e.tar.bz2
Fix test to account for legalization changes; I think this ends up
running an extra DAGCombine pass which improves the code a bit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72326 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/widen_cast-4.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/widen_cast-4.ll b/test/CodeGen/X86/widen_cast-4.ll
index 942609f..b090cb1 100644
--- a/test/CodeGen/X86/widen_cast-4.ll
+++ b/test/CodeGen/X86/widen_cast-4.ll
@@ -1,5 +1,5 @@
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse42 -disable-mmx -o %t -f
-; RUN: grep sarb %t | count 16
+; RUN: grep sarb %t | count 8
; v8i8 that is widen to v16i8 then split
; FIXME: This is widen to v16i8 and split to 16 and we then rebuild the vector.