| 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);
|
| }
|
| }
|
|
|
|
|