mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3333 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a939a1e664
commit
d022471260
@ -30,7 +30,7 @@ void "unusedBool"(int * %x, int * %y)
|
|||||||
begin
|
begin
|
||||||
; <label>:0 ; [#uses=0]
|
; <label>:0 ; [#uses=0]
|
||||||
seteq int * %x, %y ; <bool>:0 [#uses=1]
|
seteq int * %x, %y ; <bool>:0 [#uses=1]
|
||||||
not bool %0 ; <bool>:1 [#uses=0]
|
xor bool %0, true ; <bool>:1 [#uses=0]
|
||||||
setne int * %x, %y ; <bool>:2 [#uses=0]
|
setne int * %x, %y ; <bool>:2 [#uses=0]
|
||||||
ret void
|
ret void
|
||||||
end
|
end
|
||||||
@ -100,7 +100,7 @@ loop:
|
|||||||
%F = add int %A, %B
|
%F = add int %A, %B
|
||||||
%G = sub int %D, -4
|
%G = sub int %D, -4
|
||||||
%D = setle int %G, 0
|
%D = setle int %G, 0
|
||||||
%E = not bool %D
|
%E = xor bool %D, true
|
||||||
br bool %E, label %loop, label %Top
|
br bool %E, label %loop, label %Top
|
||||||
|
|
||||||
retlbl:
|
retlbl:
|
||||||
@ -118,7 +118,7 @@ Top:
|
|||||||
%p = add float %x, %y ; Def 2 - float
|
%p = add float %x, %y ; Def 2 - float
|
||||||
%z = sub float %x, %y ; Def 3 - float
|
%z = sub float %x, %y ; Def 3 - float
|
||||||
%b = setle float %p, %z ; Def 0 - bool
|
%b = setle float %p, %z ; Def 0 - bool
|
||||||
%c = not bool %b ; Def 1 - bool
|
%c = xor bool %b, true ; Def 1 - bool
|
||||||
br bool %b, label %Top, label %goon
|
br bool %b, label %Top, label %goon
|
||||||
goon:
|
goon:
|
||||||
ret void
|
ret void
|
||||||
|
@ -30,7 +30,7 @@ void "unusedBool"(int * %x, int * %y)
|
|||||||
begin
|
begin
|
||||||
; <label>:0 ; [#uses=0]
|
; <label>:0 ; [#uses=0]
|
||||||
seteq int * %x, %y ; <bool>:0 [#uses=1]
|
seteq int * %x, %y ; <bool>:0 [#uses=1]
|
||||||
not bool %0 ; <bool>:1 [#uses=0]
|
xor bool %0, true ; <bool>:1 [#uses=0]
|
||||||
setne int * %x, %y ; <bool>:2 [#uses=0]
|
setne int * %x, %y ; <bool>:2 [#uses=0]
|
||||||
ret void
|
ret void
|
||||||
end
|
end
|
||||||
@ -100,7 +100,7 @@ loop:
|
|||||||
%F = add int %A, %B
|
%F = add int %A, %B
|
||||||
%G = sub int %D, -4
|
%G = sub int %D, -4
|
||||||
%D = setle int %G, 0
|
%D = setle int %G, 0
|
||||||
%E = not bool %D
|
%E = xor bool %D, true
|
||||||
br bool %E, label %loop, label %Top
|
br bool %E, label %loop, label %Top
|
||||||
|
|
||||||
retlbl:
|
retlbl:
|
||||||
@ -118,7 +118,7 @@ Top:
|
|||||||
%p = add float %x, %y ; Def 2 - float
|
%p = add float %x, %y ; Def 2 - float
|
||||||
%z = sub float %x, %y ; Def 3 - float
|
%z = sub float %x, %y ; Def 3 - float
|
||||||
%b = setle float %p, %z ; Def 0 - bool
|
%b = setle float %p, %z ; Def 0 - bool
|
||||||
%c = not bool %b ; Def 1 - bool
|
%c = xor bool %b, true ; Def 1 - bool
|
||||||
br bool %b, label %Top, label %goon
|
br bool %b, label %Top, label %goon
|
||||||
goon:
|
goon:
|
||||||
ret void
|
ret void
|
||||||
|
Loading…
Reference in New Issue
Block a user