Skip to content

Commit

Permalink
[MERGE #3556 @jsoref] Fix spelling of variable names in WebAssemblyMo…
Browse files Browse the repository at this point in the history
…dule.cpp

Merge pull request #3556 from jsoref:spelling-internals

followup to #227

Note: I haven't rerun my tool against the current corpus, this is all work from when I made my original pass (I just never got around to proposing the other items in my series.)
  • Loading branch information
dilijev committed Sep 6, 2017
2 parents e120bba + a1cc5d8 commit 9ae3e2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Runtime/Library/WebAssemblyModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ WebAssemblyModule::ValidateModule(
{
CONFIG_FLAG(MaxAsmJsInterpreterRunCount) = 0;
AsmJsScriptFunction * funcObj = scriptContext->GetLibrary()->CreateAsmJsScriptFunction(body);
FunctionEntryPointInfo * entypointInfo = (FunctionEntryPointInfo*)funcObj->GetEntryPointInfo();
entypointInfo->SetIsAsmJSFunction(true);
FunctionEntryPointInfo * entrypointInfo = (FunctionEntryPointInfo*)funcObj->GetEntryPointInfo();
entrypointInfo->SetIsAsmJSFunction(true);
GenerateFunction(scriptContext->GetNativeCodeGenerator(), body, funcObj);
}
#endif
Expand Down

0 comments on commit 9ae3e2a

Please sign in to comment.