mirror of https://github.com/red-prig/fpPS4.git
This commit is contained in:
parent
6f440f45a9
commit
53b20d4866
|
@ -778,7 +778,6 @@ end;
|
|||
|
||||
function TEmitPostOp.OnLogicalNot1(node:TSpirvOp):Integer;
|
||||
var
|
||||
dtype:TsrDataType;
|
||||
dst:TsrRegNode;
|
||||
src:TsrRegNode;
|
||||
|
||||
|
|
|
@ -81,7 +81,6 @@ Var
|
|||
dst:PsrRegSlot;
|
||||
src:TsrRegNode;
|
||||
imm:TsrRegNode;
|
||||
a,b:TsrRegNode;
|
||||
i:Integer;
|
||||
begin
|
||||
dst:=get_sdst7(FSPI.SOPK.SDST);
|
||||
|
|
|
@ -15,7 +15,7 @@ type
|
|||
PSrcAdr=^TSrcAdr;
|
||||
TSrcAdr=object
|
||||
pCode:TsrLabelBlock;
|
||||
Offdw:ptrint;
|
||||
Offdw:PtrUInt;
|
||||
function get_code_ptr:PDWORD;
|
||||
function get_dmem_ptr:PDWORD;
|
||||
end;
|
||||
|
|
|
@ -190,7 +190,7 @@ var
|
|||
begin
|
||||
node:=Self;
|
||||
Result:=Default(TSrcAdr);
|
||||
Result.Offdw:=High(DWORD);
|
||||
Result.Offdw:=High(PtrUInt) div 4;
|
||||
//
|
||||
while (node<>nil) do
|
||||
begin
|
||||
|
|
|
@ -1122,11 +1122,8 @@ end;
|
|||
//
|
||||
|
||||
function TEmitFlow.NextParse:Byte;
|
||||
label
|
||||
_open_d;
|
||||
var
|
||||
FLevel:DWORD;
|
||||
pBase:TsrOpBlock;
|
||||
begin
|
||||
if (Cursor.pCode=nil) then Exit(2);
|
||||
if (Cursor.pBlock=nil) then Exit(3);
|
||||
|
|
Loading…
Reference in New Issue