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

Unified Diff: src/checks.h

Issue 6368053: Implements DoubleToI on ARM. Refactor some VFP code at the same time and... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 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
Index: src/checks.h
===================================================================
--- src/checks.h (revision 6591)
+++ src/checks.h (working copy)
@@ -73,8 +73,9 @@
const char* value_source, int value) {
if (expected != value) {
V8_Fatal(file, line,
- "CHECK_EQ(%s, %s) failed\n# Expected: %i\n# Found: %i",
- expected_source, value_source, expected, value);
+ "CHECK_EQ(%s, %s) failed\n"
Søren Thygesen Gjesse 2011/02/03 09:07:17 I don't think we want tabs in the output.
Rodolph Perfetta 2011/02/03 15:03:39 Done.
+ "#\tExpected: %i\t(0x%x)\n#\tFound: %i\t(0x%x)",
+ expected_source, value_source, expected, expected, value, value);
}
}

Powered by Google App Engine
This is Rietveld 408576698