1# RUN: llc -mtriple=amdgcn-mesa-mesa3d -run-pass=legalizer %s -o - | FileCheck %s 2 3--- | 4 define void @test_fptoui() { ret void } 5... 6 7--- 8name: test_fptoui 9registers: 10 - { id: 0, class: _ } 11 - { id: 1, class: _ } 12 - { id: 2, class: _ } 13body: | 14 bb.0: 15 liveins: $vgpr0 16 ; CHECK-LABEL: name: test_fptoui 17 ; CHECK: %1:_(s32) = G_FPTOUI %0 18 19 %0(s32) = COPY $vgpr0 20 %1(s32) = G_FPTOUI %0 21 $vgpr0 = COPY %1 22... 23