Skip to content

Commit

Permalink
Fix C4390
Browse files Browse the repository at this point in the history
```
warning C4390: ';' : empty controlled statement found; is this the intent?
```
  • Loading branch information
fjeremic committed Jun 7, 2021
1 parent 8f54f70 commit 1fe042d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions compiler/control/CompilationController.cpp
Expand Up @@ -75,7 +75,10 @@ bool TR::CompilationController::init(TR::CompilationInfo *compInfo)
void TR::CompilationController::shutdown()
{
if (_tlsCompObjCreated)
{
tlsFree(OMR::compilation);
}

if (!_useController)
return;

Expand Down

0 comments on commit 1fe042d

Please sign in to comment.