Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Unified Diff: test/CodeGen/ARM/vmul.ll

Issue 183273009: Prep for merging 3.4: Undo changes from 3.3 branch (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Retry Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/Transforms/Vectorize/LoopVectorize.cpp ('k') | test/CodeGen/Generic/annotate.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/CodeGen/ARM/vmul.ll
diff --git a/test/CodeGen/ARM/vmul.ll b/test/CodeGen/ARM/vmul.ll
index eb5ad8f0c3d00f4811cf9a6305813381eb6955dd..74628f0c5ce6f842b87315b73d894822488fd080 100644
--- a/test/CodeGen/ARM/vmul.ll
+++ b/test/CodeGen/ARM/vmul.ll
@@ -599,27 +599,3 @@ for.end179: ; preds = %for.cond.loopexit,
declare <8 x i16> @llvm.arm.neon.vrshiftu.v8i16(<8 x i16>, <8 x i16>) nounwind readnone
declare <8 x i16> @llvm.arm.neon.vqsubu.v8i16(<8 x i16>, <8 x i16>) nounwind readnone
declare <8 x i8> @llvm.arm.neon.vqmovnu.v8i8(<8 x i16>) nounwind readnone
-
-; vmull lowering would create a zext(v4i8 load()) instead of a zextload(v4i8),
-; creating an illegal type during legalization and causing an assert.
-; PR15970
-define void @no_illegal_types_vmull_sext(<4 x i32> %a) {
-entry:
- %wide.load283.i = load <4 x i8>* undef, align 1
- %0 = sext <4 x i8> %wide.load283.i to <4 x i32>
- %1 = sub nsw <4 x i32> %0, %a
- %2 = mul nsw <4 x i32> %1, %1
- %predphi290.v.i = select <4 x i1> undef, <4 x i32> undef, <4 x i32> %2
- store <4 x i32> %predphi290.v.i, <4 x i32>* undef, align 4
- ret void
-}
-define void @no_illegal_types_vmull_zext(<4 x i32> %a) {
-entry:
- %wide.load283.i = load <4 x i8>* undef, align 1
- %0 = zext <4 x i8> %wide.load283.i to <4 x i32>
- %1 = sub nsw <4 x i32> %0, %a
- %2 = mul nsw <4 x i32> %1, %1
- %predphi290.v.i = select <4 x i1> undef, <4 x i32> undef, <4 x i32> %2
- store <4 x i32> %predphi290.v.i, <4 x i32>* undef, align 4
- ret void
-}
« no previous file with comments | « lib/Transforms/Vectorize/LoopVectorize.cpp ('k') | test/CodeGen/Generic/annotate.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698