Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #7954 from EOSIO/bad_semicolon
Browse files Browse the repository at this point in the history
remove bad semicolon (in unused but compiled code)
  • Loading branch information
spoonincode authored Sep 20, 2019
2 parents e1ba4cf + bd06cd8 commit 28adddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/wasm-jit/Source/Runtime/LLVMJIT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void disassembleFunction(U8* bytes,Uptr numBytes)
instructionBuffer,
sizeof(instructionBuffer)
);
if(numInstructionBytes == 0 || numInstructionBytes > numBytesRemaining);
if(numInstructionBytes == 0 || numInstructionBytes > numBytesRemaining)
break;
numBytesRemaining -= numInstructionBytes;
nextByte += numInstructionBytes;
Expand Down

0 comments on commit 28adddb

Please sign in to comment.