src/share/vm/ci/ciTypeFlow.hpp
Index
Unified diffs
Context diffs
Sdiffs
Wdiffs
Patch
New
Old
Previous File
Next File
6741642 Cdiff src/share/vm/ci/ciTypeFlow.hpp
src/share/vm/ci/ciTypeFlow.hpp
Print this page
rev 296 : 6741642: bad enum definition in ciTypeFlow.hpp
Reviewed-by: rasbold
Contributed-by: doko@ubuntu.com
*** 125,135 ****
void print_on(outputStream* st) const PRODUCT_RETURN;
};
// Used as a combined index for locals and temps
enum Cell {
! Cell_0
};
// A StateVector summarizes the type information at some
// point in the program
class StateVector : public ResourceObj {
--- 125,135 ----
void print_on(outputStream* st) const PRODUCT_RETURN;
};
// Used as a combined index for locals and temps
enum Cell {
! Cell_0, Cell_max = INT_MAX
};
// A StateVector summarizes the type information at some
// point in the program
class StateVector : public ResourceObj {
src/share/vm/ci/ciTypeFlow.hpp
Index
Unified diffs
Context diffs
Sdiffs
Wdiffs
Patch
New
Old
Previous File
Next File