mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
b01a8d0165
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3218 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
379 B
LLVM
11 lines
379 B
LLVM
; This testcase is incorrectly getting completely eliminated. There should be
|
|
; SOME instruction named %c here, even if it's a bitwise and.
|
|
;
|
|
; RUN: as < %s | opt -instcombine -dce | grep '%c'
|
|
ulong %test3(ulong %A) {
|
|
%c1 = cast ulong %A to ubyte ; <ubyte> [#uses=0]
|
|
%c2 = cast ulong %A to ulong ; <ulong> [#uses=0]
|
|
ret ulong %A
|
|
}
|
|
|