Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

22 lines
297 B
LLVM

; RUN: llc < %s -mtriple=i686-- | FileCheck %s
define i32 @test(i32 %X) nounwind {
entry:
%0 = add i32 %X, 1
ret i32 %0
}
; CHECK: test
; CHECK: inc
; CHECK: ret
define i32 @test2(i32 %X) nounwind {
entry:
%0 = add i32 %X, 4
ret i32 %0
}
; CHECK: test2
; CHECK: {{add.*4.*$}}
; CHECK: ret