1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/test/CodeGen/MSP430/select-use-sr.ll
Vadzim Dambrouski 5f0034e3fc [MSP430] Fix PR32769: Select8 and Select16 need to have SR in Uses.
If Select pseudo instruction doesn't have use SR, then
CMP instructions are being marked as dead and later can be
removed by MachineCSE pass. This leads to incorrect code
generation.

Differential Revision: https://reviews.llvm.org/D32473

llvm-svn: 301372
2017-04-26 00:33:59 +00:00

22 lines
462 B
LLVM

; RUN: llc < %s -march=msp430 | FileCheck %s
; PR32769
target triple = "msp430"
; Test that CMP instruction is not removed by MachineCSE.
;
; CHECK-LABEL: @f
; CHECK: cmp.w r15, r13
; CHECK: cmp.w r15, r13
; CHECK-NEXT: jeq .LBB0_2
define i16 @f(i16, i16, i16, i16) {
entry:
%4 = icmp ult i16 %1, %3
%5 = zext i1 %4 to i16
%6 = icmp ult i16 %0, %2
%7 = zext i1 %6 to i16
%8 = icmp eq i16 %1, %3
%out = select i1 %8, i16 %5, i16 %7
ret i16 %out
}