1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-18 12:31:26 +00:00

new testcase that crashes the instcombiner.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21151 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-04-08 03:58:21 +00:00
parent 7e7fadd2ea
commit b37246d65e

@ -0,0 +1,7 @@
; RUN: llvm-as < %s | opt -instcombine -disable-output
uint %test(bool %C, uint %tmp.15) {
%tmp.16 = select bool %C, uint 8, uint 1
%tmp.18 = div uint %tmp.15, %tmp.16
ret uint %tmp.18
}