llvm/llvm/test/CodeGen/X86/pr56351.ll

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu -mattr=+soft-float | FileCheck %s

define i1 @foo(ptr %x, ptr %y) {
; CHECK-LABEL: foo:
; CHECK:       # %bb.0:
; CHECK-NEXT:    movq (%rdi), %rax
; CHECK-NEXT:    movq 8(%rdi), %rcx
; CHECK-NEXT:    xorq 8(%rsi), %rcx
; CHECK-NEXT:    xorq (%rsi), %rax
; CHECK-NEXT:    orq %rcx, %rax
; CHECK-NEXT:    sete %al
; CHECK-NEXT:    retq
  %a = load i128, ptr %x, align 16
  %b = load i128, ptr %y, align 16
  %c = icmp eq i128 %a, %b
  ret i1 %c
}