--- old/src/share/vm/c1/c1_CFGPrinter.hpp 2016-02-12 14:19:17.868824554 +0300 +++ new/src/share/vm/c1/c1_CFGPrinter.hpp 2016-02-12 14:19:17.796824557 +0300 @@ -34,7 +34,7 @@ // compilation for later analysis. class CFGPrinterOutput; -class IntervalList; +class Interval; class CFGPrinter : public AllStatic { private: @@ -46,7 +46,7 @@ static void print_compilation(Compilation* compilation); static void print_cfg(BlockList* blocks, const char* name, bool do_print_HIR, bool do_print_LIR); static void print_cfg(IR* blocks, const char* name, bool do_print_HIR, bool do_print_LIR); - static void print_intervals(IntervalList* intervals, const char* name); + static void print_intervals(GrowableArray* intervals, const char* name); }; #endif