mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
subreg form on x86-64, to avoid the problem with x86-32 having GPRs that don't have 8-bit subregs. Also, change several 16-bit instructions to use equivalent 32-bit instructions. These have a smaller encoding and avoid partial-register updates. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54223 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
395 B
LLVM
14 lines
395 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 | not grep and
|
|
|
|
; These tests differ from the ones in zext-inreg-0.ll in that
|
|
; on x86-64 they do require and instructions.
|
|
|
|
; These should use movzbl instead of 'and 255'.
|
|
; This related to not having ZERO_EXTEND_REG node.
|
|
|
|
define i64 @h(i64 %d) nounwind {
|
|
%e = add i64 %d, 1
|
|
%retval = and i64 %e, 281474976710655
|
|
ret i64 %retval
|
|
}
|