Fix warnings reported at http://tinderbox.mozilla.org/SeaMonkey/warnings.html, mostly unsigned/signed bothers.

This commit is contained in:
brendan@mozilla.org
1999-07-28 06:48:44 +00:00
parent 583c6a61f1
commit 8a08819a9c
12 changed files with 64 additions and 57 deletions

View File

@@ -88,7 +88,7 @@ typedef enum JSOp {
#define ARGC_HI(argc) ((jsbytecode)((argc) >> 8))
#define ARGC_LO(argc) ((jsbytecode)(argc))
#define GET_ARGC(pc) (((pc)[1] << 8) | (pc)[2])
#define GET_ARGC(pc) ((uintN)(((pc)[1] << 8) | (pc)[2]))
#define ARGC_LIMIT ((uint32)1 << 16)
/* Synonyms for quick JOF_QARG and JOF_QVAR bytecodes. */