summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2002-09-17 01:17:57 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2002-09-17 01:17:57 +0000
commitd9bacc5a84ca938fd57e57a7b68765bb0f251430 (patch)
tree8aee9d6b3c55cfd730261f9132be776cf9555872 /lib
parentfd214762cb32fd827ebc7a0d5cb29b7ba0ad9599 (diff)
downloadllvm-d9bacc5a84ca938fd57e57a7b68765bb0f251430.tar.gz
llvm-d9bacc5a84ca938fd57e57a7b68765bb0f251430.tar.bz2
llvm-d9bacc5a84ca938fd57e57a7b68765bb0f251430.tar.xz
Remove specification of argument default from cpp file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3772 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/VMCore/Function.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp
index fb940bf804..d7e8bea9dd 100644
--- a/lib/VMCore/Function.cpp
+++ b/lib/VMCore/Function.cpp
@@ -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;