Remove specification of argument default from cpp file.
authorVikram S. Adve <vadve@cs.uiuc.edu>
Tue, 17 Sep 2002 01:17:57 +0000 (01:17 +0000)
committerVikram S. Adve <vadve@cs.uiuc.edu>
Tue, 17 Sep 2002 01:17:57 +0000 (01:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3772 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Function.cpp

index fb940bf804af356722d275b38995530ee42d8369..d7e8bea9ddcec20f1325b8b2cb1219cd93a87abf 100644 (file)
@@ -42,7 +42,7 @@ template SymbolTableListTraits<BasicBlock, Function, Function>;
 // Argument Implementation
 //===----------------------------------------------------------------------===//
 
-Argument::Argument(const Type *Ty, const std::string &Name = "", Function *Par) 
+Argument::Argument(const Type *Ty, const std::string &Name, Function *Par) 
   : Value(Ty, Value::ArgumentVal, Name) {
   Parent = 0;