NFC: Add an explicit return for safety and consistency

This case implicitly falls-through, which is fine now as it's at the end of the
function, but it seems like an accident waiting to happen.

llvm-svn: 365210
This commit is contained in:
Hamza Sood 2019-07-05 14:36:08 +00:00
parent c8499ae35a
commit d14003d99f
1 changed files with 2 additions and 0 deletions

View File

@ -153,6 +153,8 @@ void CodeGenFunction::EmitDecl(const Decl &D) {
if (Ty->isVariablyModifiedType())
EmitVariablyModifiedType(Ty);
return;
}
}
}