projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd21476
)
Remove specification of argument default from cpp file.
author
Vikram S. Adve
<vadve@cs.uiuc.edu>
Tue, 17 Sep 2002 01:17:57 +0000
(
01:17
+0000)
committer
Vikram 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
patch
|
blob
|
history
diff --git
a/lib/VMCore/Function.cpp
b/lib/VMCore/Function.cpp
index fb940bf804af356722d275b38995530ee42d8369..d7e8bea9ddcec20f1325b8b2cb1219cd93a87abf 100644
(file)
--- 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;