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

Unified Diff: third_party/crashpad/crashpad/snapshot/win/cpu_context_win.cc

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years 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: third_party/crashpad/crashpad/snapshot/win/cpu_context_win.cc
diff --git a/third_party/crashpad/crashpad/snapshot/win/cpu_context_win.cc b/third_party/crashpad/crashpad/snapshot/win/cpu_context_win.cc
index 2450ef2552108f1ee93a5004f622ea31d18d3e8c..0b16caf07900c1951fbeae2aade4771f240140df 100644
--- a/third_party/crashpad/crashpad/snapshot/win/cpu_context_win.cc
+++ b/third_party/crashpad/crashpad/snapshot/win/cpu_context_win.cc
@@ -76,7 +76,8 @@ void CommonInitializeX86Context(const T& context, CPUContextX86* out) {
"types must be equivalent");
memcpy(&out->fxsave, &context.ExtendedRegisters, sizeof(out->fxsave));
} else if (context.ContextFlags & WOW64_CONTEXT_FLOATING_POINT) {
- CHECK(false) << "TODO(scottmg): extract x87 data";
+ // TODO(scottmg): extract x87 data
+ CHECK(false);
}
}

Powered by Google App Engine
This is Rietveld 408576698