15 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc < %s -mtriple=i686-- | FileCheck %s3 4define i32 @test1(i32 %x) {5; CHECK-LABEL: test1:6; CHECK: # %bb.0:7; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax8; CHECK-NEXT: xorl $-32, %eax9; CHECK-NEXT: addl $33, %eax10; CHECK-NEXT: retl11 %xor = xor i32 %x, 3112 %sub = sub i32 32, %xor13 ret i32 %sub14}15