1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-16 00:33:10 +00:00
llvm-6502/test/Transforms/InstCombine/2003-05-26-CastMiscompile.ll
2003-09-16 15:29:54 +00:00

8 lines
264 B
LLVM

; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 4294967295
ulong %test(ulong %Val) {
%tmp.3 = cast ulong %Val to uint ; <uint> [#uses=1]
%tmp.8 = cast uint %tmp.3 to ulong ; <ulong> [#uses=1]
ret ulong %tmp.8
}