mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
e1af6319c8
Summary: Currently when expanding a SETCC node into a SELECT_CC, LLVM uses an incorrect type for determining BooleanContent of the result. This patch fixes the issue. Fixes PR36079. Reviewers: rogfer01, javed.absar, efriedma Reviewed By: efriedma Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D43282 llvm-svn: 325325
24 lines
982 B
LLVM
24 lines
982 B
LLVM
; RUN: llc -mtriple=arm-eabi -mattr=+neon < %s -o - | FileCheck %s
|
|
|
|
@c = global [4 x i32] [i32 3, i32 3, i32 3, i32 3], align 4
|
|
@d = common global i32 0, align 4
|
|
|
|
define void @foo() local_unnamed_addr nounwind norecurse {
|
|
entry:
|
|
%0 = load <4 x i32>, <4 x i32>* bitcast ([4 x i32]* @c to <4 x i32>*), align 4
|
|
%1 = and <4 x i32> %0,
|
|
<i32 1,
|
|
i32 zext (i1 icmp ne (i32* getelementptr inbounds ([4 x i32], [4 x i32]* @c, i32 0, i32 1), i32* @d) to i32),
|
|
i32 zext (i1 icmp ne (i32* getelementptr inbounds ([4 x i32], [4 x i32]* @c, i32 0, i32 2), i32* @d) to i32),
|
|
i32 zext (i1 icmp ne (i32* getelementptr inbounds ([4 x i32], [4 x i32]* @c, i32 0, i32 3), i32* @d) to i32)>
|
|
store <4 x i32> %1, <4 x i32>* bitcast ([4 x i32]* @c to <4 x i32>*), align 4
|
|
ret void
|
|
; CHECK-NOT: mvnne
|
|
; CHECK: movne r{{[0-9]+}}, #1
|
|
; CHECK-NOT: mvnne
|
|
; CHECK: movne r{{[0-9]+}}, #1
|
|
; CHECK-NOT: mvnne
|
|
; CHECK: movne r{{[0-9]+}}, #1
|
|
; CHECK-NOT: mvnne
|
|
}
|