diff options
Diffstat (limited to 'lib/Target/CBackend/CBackend.cpp')
-rw-r--r-- | lib/Target/CBackend/CBackend.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index 7f2b14d327..a622075141 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -182,9 +182,7 @@ std::ostream &CWriter::printType(std::ostream &Out, const Type *Ty, // Check to see if the type is named. if (!IgnoreName || isa<OpaqueType>(Ty)) { std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty); - if (I != TypeNames.end()) { - return Out << I->second << " " << NameSoFar; - } + if (I != TypeNames.end()) return Out << I->second << " " << NameSoFar; } switch (Ty->getPrimitiveID()) { |