From: Simon Pilgrim Date: Tue, 24 Feb 2015 21:46:23 +0000 (+0000) Subject: Added test case for PR22678 (check CONCAT_VECTORS DAG combiner pass doesn't introduce... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=01157550205052d201842da4ab11ffb89beb28e4;p=oota-llvm.git Added test case for PR22678 (check CONCAT_VECTORS DAG combiner pass doesn't introduce illegal types) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230386 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/ARM/vector-DAGCombine.ll b/test/CodeGen/ARM/vector-DAGCombine.ll index 759da2235e4..566e955af2b 100644 --- a/test/CodeGen/ARM/vector-DAGCombine.ll +++ b/test/CodeGen/ARM/vector-DAGCombine.ll @@ -27,6 +27,14 @@ entry: ret void } +; PR22678 +; Check CONCAT_VECTORS DAG combiner pass doesn't introduce illegal types. +define void @test_pr22678() { + %1 = fptoui <16 x float> undef to <16 x i8> + store <16 x i8> %1, <16 x i8>* undef + ret void +} + ; Radar 8407927: Make sure that VMOVRRD gets optimized away when the result is ; converted back to be used as a vector type. ; CHECK-LABEL: test_vmovrrd_combine: