13 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc -mtriple=x86_64-linux-gnu -global-isel -verify-machineinstrs < %s -o - | FileCheck %s --check-prefix=CHECK3 4define double @test(float %a) {5; CHECK-LABEL: test:6; CHECK: # %bb.0: # %entry7; CHECK-NEXT: cvtss2sd %xmm0, %xmm08; CHECK-NEXT: retq9entry:10 %conv = fpext float %a to double11 ret double %conv12}13