[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / X86 / sub.ll
blob3251cb606802a194489923074f0a54c6843ff17c
1 ; RUN: llc -mtriple=i686-- < %s | FileCheck %s
3 define i32 @test1(i32 %x) {
4   %xor = xor i32 %x, 31
5   %sub = sub i32 32, %xor
6   ret i32 %sub
7 ; CHECK-LABEL: test1:
8 ; CHECK:      xorl $-32
9 ; CHECK-NEXT: addl $33
10 ; CHECK-NEXT: ret