25 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 62; RUN: llc < %s -mtriple=x86_64-unknown -mattr=-sse,+egpr --show-mc-encoding | FileCheck %s3 4define void @x87(ptr %0, ptr %1) nounwind {5; CHECK-LABEL: x87:6; CHECK: # %bb.0:7; CHECK-NEXT: pushq %r14 # encoding: [0x41,0x56]8; CHECK-NEXT: pushq %rbx # encoding: [0x53]9; CHECK-NEXT: movq %rsi, %rbx # encoding: [0x48,0x89,0xf3]10; CHECK-NEXT: movq %rdi, %r14 # encoding: [0x49,0x89,0xfe]11; CHECK-NEXT: #APP12; CHECK-NEXT: nop # encoding: [0x90]13; CHECK-NEXT: #NO_APP14; CHECK-NEXT: flds (%r14) # encoding: [0x41,0xd9,0x06]15; CHECK-NEXT: fstps (%rbx) # encoding: [0xd9,0x1b]16; CHECK-NEXT: popq %rbx # encoding: [0x5b]17; CHECK-NEXT: popq %r14 # encoding: [0x41,0x5e]18; CHECK-NEXT: retq # encoding: [0xc3]19 tail call void asm sideeffect "nop", "~{eax},~{ecx},~{edx},~{esi},~{edi},~{r8},~{r9},~{r10},~{r11}"()20 %3 = load float, ptr %021 store float %3, ptr %122 ret void23}24 25