aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/fast-isel-sext.ll
blob: ca1558e3c84496c6f5dcb0a7cd83ffbf117664eb (plain)
1
2
3
4
5
6
7
8
9
; RUN: llc -mtriple=x86_64-linux -fast-isel -show-mc-encoding < %s | FileCheck %s

; CHECK-LABEL: f:
; CHECK:       addl $-2, %eax         # encoding: [0x83,0xc0,0xfe]
define i32 @f(i32* %y) {
  %x = load i32, i32* %y
  %dec = add i32 %x, -2
  ret i32 %dec
}