diff src/share/vm/utilities/debug.hpp @ 8769:be4d5c6c1f79

8010121: Remove definition of ShouldNotReachHere2(msg) Reviewed-by: kvn, stefank, rbackman, twisti Contributed-by: niclas.adlertz@oracle.com
author neliasso
date Tue, 19 Mar 2013 10:31:16 +0100
parents da91efe96a93
children b9a918201d47 746b070f5022
line wrap: on
line diff
--- a/src/share/vm/utilities/debug.hpp	Mon Mar 18 09:08:07 2013 -0700
+++ b/src/share/vm/utilities/debug.hpp	Tue Mar 19 10:31:16 2013 +0100
@@ -192,12 +192,6 @@
   BREAKPOINT;                                                                \
 } while (0)
 
-#define ShouldNotReachHere2(message)                                         \
-do {                                                                         \
-  report_should_not_reach_here2(__FILE__, __LINE__, message);                \
-  BREAKPOINT;                                                                \
-} while (0)
-
 #define Unimplemented()                                                      \
 do {                                                                         \
   report_unimplemented(__FILE__, __LINE__);                                  \
@@ -218,7 +212,6 @@
                              const char* message);
 void report_should_not_call(const char* file, int line);
 void report_should_not_reach_here(const char* file, int line);
-void report_should_not_reach_here2(const char* file, int line, const char* message);
 void report_unimplemented(const char* file, int line);
 void report_untested(const char* file, int line, const char* message);