1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Add missing return statement.

llvm-svn: 134622
This commit is contained in:
Akira Hatanaka 2011-07-07 18:27:36 +00:00
parent ff0a35a206
commit 31119a50bc

View File

@ -78,8 +78,10 @@ namespace {
SmallString<128> Str;
raw_svector_ostream OS(Str);
if (MI->isDebugValue())
if (MI->isDebugValue()) {
PrintDebugValueComment(MI, OS);
return;
}
printInstruction(MI, OS);
OutStreamer.EmitRawText(OS.str());