This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
pascal
/
freepascal.compiler
mirror da
https://gitlab.com/freepascal.org/fpc/source.git
Segui
2
Vota
0
Forka
0
File
Problemi
0
Wiki
Sfoglia il codice sorgente
* now used to test int32 add operation
mazen
22 anni fa
parent
7b3662c508
commit
63f08813bc
1 ha cambiato i file
con
2 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
2
1
tests/sparc/test0001.pas
+ 2
- 1
tests/sparc/test0001.pas
Vedi File
@@ -5,5 +5,6 @@ VAR
x,y:Cardinal;
BEGIN
y:=0;
- z:=0;
+ y:=0;
+ y:=x+1;
END.