diff options
Diffstat (limited to 'lib/Target/CBackend/CBackend.cpp')
-rw-r--r-- | lib/Target/CBackend/CBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index 1922e6fd26..bd2e37647e 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -208,7 +208,7 @@ ostream &CWriter::printType(const Type *Ty, const string &NameSoFar, case Type::FunctionTyID: { const FunctionType *MTy = cast<FunctionType>(Ty); printType(MTy->getReturnType(), ""); - Out << " " << NameSoFar << " ("; + Out << " (" << NameSoFar << ") ("; for (FunctionType::ParamTypes::const_iterator I = MTy->getParamTypes().begin(), |