20 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc -mtriple=x86_64-linux-generic < %s | FileCheck %s3 4define void @reassociation_gt64bit(i32 %x, i32 %y, ptr %s) {5; CHECK-LABEL: reassociation_gt64bit:6; CHECK: # %bb.0:7; CHECK-NEXT: movl %edi, %eax8; CHECK-NEXT: movl %esi, %ecx9; CHECK-NEXT: addq %rax, %rcx10; CHECK-NEXT: movq %rcx, (%rdx)11; CHECK-NEXT: movw $64, 8(%rdx)12; CHECK-NEXT: retq13 %zextx = zext i32 %x to i8014 %zexty = zext i32 %y to i8015 %add1 = add i80 %zextx, 118059162071741130342416 %add2 = add i80 %add1, %zexty17 store i80 %add2, ptr %s18 ret void19}20