From 68b629fd163c7041abad5184815d76d101cc9842 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Sun, 8 Jun 2003 18:20:02 +0000 Subject: [PATCH] * fixed small bug where a location was set to LOC_CREGISTER instead of LOC_REGISTER --- compiler/powerpc/nppcmat.pas | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/compiler/powerpc/nppcmat.pas b/compiler/powerpc/nppcmat.pas index eacd480c24..fd8862d7d1 100644 --- a/compiler/powerpc/nppcmat.pas +++ b/compiler/powerpc/nppcmat.pas @@ -361,7 +361,7 @@ implementation begin location.registerlow := rg.getregisterint(exprasmlist,OS_INT); location.registerhigh := rg.getregisterint(exprasmlist,OS_INT); - location.loc := LOC_CREGISTER; + location.loc := LOC_REGISTER; end; exprasmlist.concat(taicpu.op_reg_reg_const(A_SUBFIC, location.registerlow,left.location.registerlow,0)); @@ -520,7 +520,11 @@ begin end. { $Log$ - Revision 1.29 2003-06-04 11:58:58 jonas + Revision 1.30 2003-06-08 18:20:02 jonas + * fixed small bug where a location was set to LOC_CREGISTER instead of + LOC_REGISTER + + Revision 1.29 2003/06/04 11:58:58 jonas * calculate localsize also in g_return_from_proc since it's now called before g_stackframe_entry (still have to fix macos) * compilation fixes (cycle doesn't work yet though)