aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/GlobalVariable.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-08 21:56:02 +0000
committerChris Lattner <sabre@nondot.org>2002-04-08 21:56:02 +0000
commit5109f75f50501e3bd8ade66029ca485aeb359ff6 (patch)
treee05d97fd8d95031f6583c20a2cf5a8f1a5986652 /include/llvm/GlobalVariable.h
parent5e1cfc58c1907eb70710c54808762657cf625180 (diff)
downloadexternal_llvm-5109f75f50501e3bd8ade66029ca485aeb359ff6.zip
external_llvm-5109f75f50501e3bd8ade66029ca485aeb359ff6.tar.gz
external_llvm-5109f75f50501e3bd8ade66029ca485aeb359ff6.tar.bz2
* Add virtual print methods
* s/Method/Function git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2172 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/GlobalVariable.h')
-rw-r--r--include/llvm/GlobalVariable.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/GlobalVariable.h b/include/llvm/GlobalVariable.h
index 9f10f71..79507a5 100644
--- a/include/llvm/GlobalVariable.h
+++ b/include/llvm/GlobalVariable.h
@@ -59,6 +59,8 @@ public:
//
inline bool isConstant() const { return isConstantGlobal; }
+ virtual void print(std::ostream &OS) const;
+
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const GlobalVariable *) { return true; }
static inline bool classof(const Value *V) {