Skip to content

Commit

Permalink
pointer style
Browse files Browse the repository at this point in the history
  • Loading branch information
rmottola committed Apr 29, 2019
1 parent 6b7da14 commit 6ef3810
Show file tree
Hide file tree
Showing 6 changed files with 115 additions and 115 deletions.
6 changes: 3 additions & 3 deletions js/src/jit/BaselineIC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ ICStub::trace(JSTracer* trc)
static_cast<ICGetName_Scope<6>*>(this)->traceScopes(trc);
break;
case ICStub::GetIntrinsic_Constant: {
ICGetIntrinsic_Constant* constantStub = toGetIntrinsic_Constant();
ICGetIntrinsic_Constant *constantStub = toGetIntrinsic_Constant();
gc::MarkValue(trc, &constantStub->value(), "baseline-getintrinsic-constant-value");
break;
}
Expand Down Expand Up @@ -376,12 +376,12 @@ ICStub::trace(JSTracer* trc)
break;
}
case ICStub::GetProp_Unboxed: {
ICGetProp_Unboxed* propStub = toGetProp_Unboxed();
ICGetProp_Unboxed *propStub = toGetProp_Unboxed();
MarkObjectGroup(trc, &propStub->group(), "baseline-getprop-unboxed-stub-group");
break;
}
case ICStub::GetProp_TypedObject: {
ICGetProp_TypedObject* propStub = toGetProp_TypedObject();
ICGetProp_TypedObject *propStub = toGetProp_TypedObject();
MarkShape(trc, &propStub->shape(), "baseline-getprop-typedobject-stub-shape");
break;
}
Expand Down
Loading

0 comments on commit 6ef3810

Please sign in to comment.