[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / X86 / i1narrowfail.ll
blob282d1ac28f5962ce7de6cc79b5419a6b230afc82
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=knl | FileCheck %s
4 define void @foo(i64* %ptr) {
5 ; CHECK-LABEL: foo:
6 ; CHECK:       ## %bb.0:
7 ; CHECK-NEXT:    orb $16, (%rdi)
8 ; CHECK-NEXT:    retq
9   %r11 = load i64, i64* %ptr, align 8
10   %r12 = or i64 16, %r11
11   store i64 %r12, i64* %ptr, align 8
12   ret void