Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/external/bsd/sljit/dist/sljit_src Fix a pilot error in t...



details:   https://anonhg.NetBSD.org/src/rev/7bca845eeaf5
branches:  trunk
changeset: 345458:7bca845eeaf5
user:      alnsn <alnsn%NetBSD.org@localhost>
date:      Sun May 29 17:17:48 2016 +0000

description:
Fix a pilot error in the manual conflict handling..

diffstat:

 sys/external/bsd/sljit/dist/sljit_src/sljitNativePPC_common.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (24 lines):

diff -r 32131b97954d -r 7bca845eeaf5 sys/external/bsd/sljit/dist/sljit_src/sljitNativePPC_common.c
--- a/sys/external/bsd/sljit/dist/sljit_src/sljitNativePPC_common.c     Sun May 29 17:09:33 2016 +0000
+++ b/sys/external/bsd/sljit/dist/sljit_src/sljitNativePPC_common.c     Sun May 29 17:17:48 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sljitNativePPC_common.c,v 1.5 2016/05/29 17:09:33 alnsn Exp $  */
+/*     $NetBSD: sljitNativePPC_common.c,v 1.6 2016/05/29 17:17:48 alnsn Exp $  */
 
 /*
  *    Stack-less Just-In-Time compiler
@@ -48,10 +48,10 @@
 #define SLJIT_PASS_ENTRY_ADDR_TO_CALL 1
 #endif
 
-#define TMP_REG1       (SLJIT_NO_REGISTERS + 1)
-#define TMP_REG2       (SLJIT_NO_REGISTERS + 2)
-#define TMP_REG3       (SLJIT_NO_REGISTERS + 3)
-#define TMP_ZERO       (SLJIT_NO_REGISTERS + 4)
+#define TMP_REG1       (SLJIT_NUMBER_OF_REGISTERS + 2)
+#define TMP_REG2       (SLJIT_NUMBER_OF_REGISTERS + 3)
+#define TMP_REG3       (SLJIT_NUMBER_OF_REGISTERS + 4)
+#define TMP_ZERO       (SLJIT_NUMBER_OF_REGISTERS + 5)
 
 #if (defined SLJIT_PASS_ENTRY_ADDR_TO_CALL && SLJIT_PASS_ENTRY_ADDR_TO_CALL)
 #define TMP_CALL_REG   (SLJIT_NUMBER_OF_REGISTERS + 6)



Home | Main Index | Thread Index | Old Index