1 ; RUN: llc < %s -march=ptx32 | FileCheck %s 2 3 ; CHECK: .func (.reg .b32 %ret{{[0-9]+}}) test_parameter_order (.reg .f32 %arg{{[0-9]+}}, .reg .b32 %arg{{[0-9]+}}, .reg .b32 %arg{{[0-9]+}}, .reg .f32 %arg{{[0-9]+}}) 4 define ptx_device i32 @test_parameter_order(float %a, i32 %b, i32 %c, float %d) { 5 ; CHECK: sub.u32 %ret{{[0-9]+}}, %r{{[0-9]+}}, %r{{[0-9]+}} 6 %result = sub i32 %b, %c 7 ret i32 %result 8 } 9