15 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc < %s -mtriple=i686-- | FileCheck %s3; PR18744 5define i32 @test(i32 %a, i32 %b) {6; CHECK-LABEL: test:7; CHECK: # %bb.0: # %entry8; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax9; CHECK-NEXT: imull {{[0-9]+}}(%esp), %eax10; CHECK-NEXT: retl11entry:12 %tmp3 = mul i32 %b, %a13 ret i32 %tmp314}15