Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Unified Diff: src/checks.cc

Issue 137963002: Various API-related simplifications. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: upload trouble Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/api.cc ('k') | src/v8checks.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/checks.cc
diff --git a/src/checks.cc b/src/checks.cc
index 2b1c76cb9b1bc35b7ef19288bf6daee662d03c64..62e04ff205c4629ac54a0d2531a9d6a43986cfa4 100644
--- a/src/checks.cc
+++ b/src/checks.cc
@@ -138,17 +138,6 @@ void CheckNonEqualsHelper(const char* file,
}
-void API_Fatal(const char* location, const char* format, ...) {
- i::OS::PrintError("\n#\n# Fatal error in %s\n# ", location);
- va_list arguments;
- va_start(arguments, format);
- i::OS::VPrintError(format, arguments);
- va_end(arguments);
- i::OS::PrintError("\n#\n\n");
- i::OS::Abort();
-}
-
-
namespace v8 { namespace internal {
intptr_t HeapObjectTagMask() { return kHeapObjectTagMask; }
« no previous file with comments | « src/api.cc ('k') | src/v8checks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698