mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
93d88192a2
Summary: `ComputeNumSignBits` returns incorrect results for `srem` instructions. This change fixes the issue and adds a test case. Reviewers: nadav, nicholas, atrick Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D8600 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233225 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
469 B
LLVM
16 lines
469 B
LLVM
; RUN: opt -indvars -S < %s | FileCheck %s
|
|
|
|
declare { i8, i1 } @llvm.smul.with.overflow.i8(i8, i8) nounwind readnone
|
|
|
|
define i1 @test1(i8 %x) {
|
|
entry:
|
|
; CHECK-LABEL: @test1
|
|
%rem = srem i8 %x, 15
|
|
%t = call { i8, i1 } @llvm.smul.with.overflow.i8(i8 %rem, i8 %rem)
|
|
; CHECK: %t = call { i8, i1 } @llvm.smul.with.overflow.i8(i8 %rem, i8 %rem)
|
|
; CHECK: %obit = extractvalue { i8, i1 } %t, 1
|
|
; CHECK: ret i1 %obit
|
|
%obit = extractvalue { i8, i1 } %t, 1
|
|
ret i1 %obit
|
|
}
|