| Index: src/frames.cc
|
| diff --git a/src/frames.cc b/src/frames.cc
|
| index 0571a813f5e56b45922ac6ee3a76dc78940749ad..d505780f0e3a54adbee58bd189645765b401e600 100644
|
| --- a/src/frames.cc
|
| +++ b/src/frames.cc
|
| @@ -1381,8 +1381,11 @@ struct JSCallerSavedCodeData {
|
| };
|
|
|
|
|
| -static LazyInstance<JSCallerSavedCodeData>::type caller_saved_code_data =
|
| - LAZY_INSTANCE_INITIALIZER;
|
| +static LazyInstance<
|
| + JSCallerSavedCodeData,
|
| + DefaultConstructTrait<JSCallerSavedCodeData>,
|
| + SingleThreadInitOnceTrait>::type caller_saved_code_data =
|
| + LAZY_INSTANCE_INITIALIZER;
|
|
|
| int JSCallerSavedCode(int n) {
|
| ASSERT(0 <= n && n < kNumJSCallerSaved);
|
|
|