Changed default value of 3rd parameter in function definition
authorAnand Shukla <ashukla@cs.uiuc.edu>
Fri, 23 Aug 2002 10:55:49 +0000 (10:55 +0000)
committerAnand Shukla <ashukla@cs.uiuc.edu>
Fri, 23 Aug 2002 10:55:49 +0000 (10:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3492 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CBackend/CBackend.cpp
lib/Target/CBackend/Writer.cpp

index eece0c9cedc506b3e1d5c7429ee27fda688f3995..e33622f71f3e3a533bec835c48f40a7a60343593 100644 (file)
@@ -146,7 +146,7 @@ string CWriter::getValueName(const Value *V) {
 // declaration.
 //
 ostream &CWriter::printType(const Type *Ty, const string &NameSoFar,
-                            bool IgnoreName = false) {
+                            bool IgnoreName) {
   if (Ty->isPrimitiveType())
     switch (Ty->getPrimitiveID()) {
     case Type::VoidTyID:   return Out << "void "               << NameSoFar;
index eece0c9cedc506b3e1d5c7429ee27fda688f3995..e33622f71f3e3a533bec835c48f40a7a60343593 100644 (file)
@@ -146,7 +146,7 @@ string CWriter::getValueName(const Value *V) {
 // declaration.
 //
 ostream &CWriter::printType(const Type *Ty, const string &NameSoFar,
-                            bool IgnoreName = false) {
+                            bool IgnoreName) {
   if (Ty->isPrimitiveType())
     switch (Ty->getPrimitiveID()) {
     case Type::VoidTyID:   return Out << "void "               << NameSoFar;