swap NativeLine and UnknownLine values to match Sun's convention

This commit is contained in:
Joel Dice 2011-03-17 09:41:23 -06:00
parent 366dfc009c
commit 0922dd3429

View File

@ -138,8 +138,8 @@ enum StackTag {
ObjectTag ObjectTag
}; };
const int NativeLine = -1; const int NativeLine = -2;
const int UnknownLine = -2; const int UnknownLine = -1;
// class vmFlags: // class vmFlags:
const unsigned ReferenceFlag = 1 << 0; const unsigned ReferenceFlag = 1 << 0;