summaryrefslogtreecommitdiff
path: root/include/llvm/Argument.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Argument.h')
-rw-r--r--include/llvm/Argument.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/Argument.h b/include/llvm/Argument.h
index 650bee3d10..c69caab831 100644
--- a/include/llvm/Argument.h
+++ b/include/llvm/Argument.h
@@ -65,11 +65,6 @@ public:
/// removeAttr - Remove a ParamAttr from an argument
void removeAttr(ParameterAttributes);
- virtual void print(std::ostream &OS) const;
- void print(std::ostream *OS) const {
- if (OS) print(*OS);
- }
-
/// classof - Methods for support type inquiry through isa, cast, and
/// dyn_cast:
///