florian 1 zi în urmă
părinte
comite
f6ef9f2aa3

+ 1 - 1
compiler/aarch64/ncpuset.pas

@@ -110,7 +110,7 @@ implementation
                  { ELSE-label                                }
                  if first then
                    begin
-                      { have we to ajust the first value ? }
+                      { have we to adjust the first value ? }
                       if (t^._low>get_min_value(left.resultdef)) or (get_min_value(left.resultdef)<>0) then
                         begin
                           { use unsigned_opcgsize here to avoid uncessary sign extensions, at this place hregister will never be negative, because

+ 1 - 1
compiler/arm/narmset.pas

@@ -344,7 +344,7 @@ implementation
                   { ELSE-label                                }
                   if first then
                     begin
-                       { have we to ajust the first value ? }
+                       { have we to adjust the first value ? }
                        if (t^._low>get_min_value(left.resultdef)) or (get_min_value(left.resultdef)<>0) then
                          begin
                            tbasecgarm(cg).cgsetflags:=true;

+ 1 - 1
compiler/m68k/n68kset.pas

@@ -82,7 +82,7 @@ implementation
                 { ELSE-label                                }
                 if first then
                   begin
-                     { have we to ajust the first value ? }
+                     { have we to adjust the first value ? }
                      if (t^._low>get_min_value(left.resultdef)) or (get_min_value(left.resultdef)<>0) then
                        hlcg.a_op_const_reg(current_asmdata.CurrAsmList, OP_SUB, opsize, tcgint(t^._low.svalue), hregister);
                   end

+ 1 - 1
compiler/ncgset.pas

@@ -720,7 +720,7 @@ implementation
                 { ELSE-label                                }
                 if first then
                   begin
-                     { have we to ajust the first value ? }
+                     { have we to adjust the first value ? }
                      if (t^._low>get_min_value(left.resultdef)) or (get_min_value(left.resultdef)<>0) then
                        gensub(tcgint(t^._low.svalue));
                   end

+ 1 - 1
compiler/ppcgen/ngppcset.pas

@@ -195,7 +195,7 @@ implementation
                 { ELSE-label                                }
                 if first then
                   begin
-                     { have we to ajust the first value ? }
+                     { have we to adjust the first value ? }
                      if (t^._low>get_min_value(left.resultdef)) or (get_min_value(left.resultdef)<>0) then
                        gensub(longint(int64(t^._low)));
                   end

+ 1 - 1
compiler/wasm32/nwasmset.pas

@@ -182,7 +182,7 @@ implementation
                { ELSE-label                                }
                if first then
                  begin
-                   { have we to ajust the first value ? }
+                   { have we to adjust the first value ? }
                    if (t^._low>get_min_value(left.resultdef)) or (get_min_value(left.resultdef)<>0) then
                      gensub(tcgint(t^._low.svalue));
                  end

+ 1 - 1
compiler/x86/nx86set.pas

@@ -257,7 +257,7 @@ implementation
                   cg.a_reg_alloc(current_asmdata.CurrAsmList, NR_DEFAULTFLAGS);
                   if first then
                     begin
-                       { have we to ajust the first value ? }
+                       { have we to adjust the first value ? }
                        if (t^._low>get_min_value(left.resultdef)) or (get_min_value(left.resultdef)<>0) then
                          cg.a_op_const_reg(current_asmdata.CurrAsmList, OP_SUB, opcgsize, aint(t^._low.svalue), hregister);
                     end