view test/Transforms/InstCombine/2011-03-08-SRemMinusOneBadOpt.ll @ 95:afa8332a0e37 LLVM3.8

LLVM 3.8
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Tue, 13 Oct 2015 17:48:58 +0900
parents 95c75e76d11b
children
line wrap: on
line source

; RUN: opt < %s -instcombine -S | FileCheck %s
; PR9346

define i32 @test(i64 %x) nounwind {
; CHECK: ret i32 0
entry:
  %or = or i64 %x, 4294967294
  %conv = trunc i64 %or to i32
  %rem.i = srem i32 %conv, -1
  ret i32 %rem.i
}