Test updates were performed using: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only the test updates where the test passed without further modification (which is almost all of them, as the backend is largely pointer-type agnostic).
19 lines
574 B
LLVM
19 lines
574 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=x86_64-- -combiner-shrink-load-replace-store-with-store=false | FileCheck %s
|
|
|
|
define void @shrink(ptr %ptr) {
|
|
; CHECK-LABEL: shrink:
|
|
; CHECK: # %bb.0: # %entry
|
|
; CHECK-NEXT: movzbl (%rdi), %eax
|
|
; CHECK-NEXT: orl $25600, %eax # imm = 0x6400
|
|
; CHECK-NEXT: movw %ax, (%rdi)
|
|
; CHECK-NEXT: retq
|
|
entry:
|
|
%val = load i16, ptr %ptr
|
|
%masked_val = and i16 %val, 255
|
|
%replaced_val = or i16 %masked_val, 25600
|
|
store i16 %replaced_val, ptr %ptr
|
|
ret void
|
|
}
|
|
|