Xamarin Public Jenkins (auto-signing) e19d552987 Imported Upstream version 5.18.0.161
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
2018-10-19 08:34:24 +00:00

10 lines
259 B
LLVM

; 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
}