1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=knl | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker 3*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: @foo 4*9880d681SAndroid Build Coastguard Worker; CHECK: orb $16 5*9880d681SAndroid Build Coastguard Workerdefine void @foo(i64* %ptr) { 6*9880d681SAndroid Build Coastguard Worker %r11 = load i64, i64* %ptr, align 8 7*9880d681SAndroid Build Coastguard Worker %r12 = or i64 16, %r11 8*9880d681SAndroid Build Coastguard Worker store i64 %r12, i64* %ptr, align 8 9*9880d681SAndroid Build Coastguard Worker ret void 10*9880d681SAndroid Build Coastguard Worker} 11