diff options
author | Chris Lattner <sabre@nondot.org> | 2003-04-16 20:28:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-04-16 20:28:45 +0000 |
commit | 4ad02e726d9b634372b037d4b352d8b63bb9e849 (patch) | |
tree | 463f4e5e0773c2c8ca3e891556fc0a36c83e3ab5 /include/llvm/GlobalVariable.h | |
parent | 2c72b184b86152d4c9e00731d9257240f39ce20b (diff) | |
download | external_llvm-4ad02e726d9b634372b037d4b352d8b63bb9e849.zip external_llvm-4ad02e726d9b634372b037d4b352d8b63bb9e849.tar.gz external_llvm-4ad02e726d9b634372b037d4b352d8b63bb9e849.tar.bz2 |
Add new linkage types to support a real frontend
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5786 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/GlobalVariable.h')
-rw-r--r-- | include/llvm/GlobalVariable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/GlobalVariable.h b/include/llvm/GlobalVariable.h index a534d19..6fb74a3 100644 --- a/include/llvm/GlobalVariable.h +++ b/include/llvm/GlobalVariable.h @@ -35,7 +35,7 @@ public: /// GlobalVariable ctor - If a parent module is specified, the global is /// automatically inserted into the end of the specified modules global list. /// - GlobalVariable(const Type *Ty, bool isConstant, bool isInternal, + GlobalVariable(const Type *Ty, bool isConstant, LinkageTypes Linkage, Constant *Initializer = 0, const std::string &Name = "", Module *Parent = 0); |