< prev index next >

src/hotspot/share/gc/shenandoah/shenandoahHeuristics.hpp

Print this page
rev 58673 : [mq]: JDK-8242054-01.patch

*** 55,65 **** } \ } while (0) #define SHENANDOAH_CHECK_FLAG_SET(name) \ do { \ ! if (!name) { \ err_msg message("Heuristics needs -XX:+" #name " to work correctly"); \ vm_exit_during_initialization("Error", message); \ } \ } while (0) --- 55,65 ---- } \ } while (0) #define SHENANDOAH_CHECK_FLAG_SET(name) \ do { \ ! if (!(name)) { \ err_msg message("Heuristics needs -XX:+" #name " to work correctly"); \ vm_exit_during_initialization("Error", message); \ } \ } while (0)
< prev index next >