blob: 4ab6b22e4c190fcc73262c62a8961b38a1a195f4 [file] [log] [blame]
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -passes=mem2reg < %s -S | FileCheck %s
define void @patatino() {
; CHECK-LABEL: @patatino(
; CHECK-NEXT: ret void
; CHECK: cantreachme:
; CHECK-NEXT: [[DEC:%.*]] = add nsw i32 poison, -1
; CHECK-NEXT: br label [[CANTREACHME:%.*]]
;
%a = alloca i32, align 4
ret void
cantreachme:
%dec = add nsw i32 %tmp, -1
store i32 %dec, ptr %a
store i32 %tmp, ptr %a
%tmp = load i32, ptr %a
br label %cantreachme
}