blob: 282d1ac28f5962ce7de6cc79b5419a6b230afc82 [file] [log] [blame]
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=knl | FileCheck %s
define void @foo(i64* %ptr) {
; CHECK-LABEL: foo:
; CHECK: ## %bb.0:
; CHECK-NEXT: orb $16, (%rdi)
; CHECK-NEXT: retq
%r11 = load i64, i64* %ptr, align 8
%r12 = or i64 16, %r11
store i64 %r12, i64* %ptr, align 8
ret void
}