mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Stop custom lowering forr x86 DEC64m from happening if the load in the lowered sequence has more than 1 user
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150537 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -43,6 +43,20 @@ store i32 %lor.ext.i, i32* @a, align 4, !tbaa !3
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
; CHECK: test2
|
||||
define i32 @test2() nounwind uwtable ssp {
|
||||
entry:
|
||||
; CHECK-NOT: decq ({{.*}})
|
||||
%0 = load i64* @c, align 8, !tbaa !0
|
||||
%dec.i = add nsw i64 %0, -1
|
||||
store i64 %dec.i, i64* @c, align 8, !tbaa !0
|
||||
%tobool.i = icmp ne i64 %0, 0
|
||||
%lor.ext.i = zext i1 %tobool.i to i32
|
||||
store i32 %lor.ext.i, i32* @a, align 4, !tbaa !3
|
||||
%call = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([5 x i8]* @.str, i64 0, i64 0), i64 %dec.i) nounwind
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
declare i32 @printf(i8* nocapture, ...) nounwind
|
||||
|
||||
declare void @free(i8* nocapture) nounwind
|
||||
|
Reference in New Issue
Block a user