summaryrefslogtreecommitdiff
path: root/include/llvm/Function.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-04-16 20:28:45 +0000
committerChris Lattner <sabre@nondot.org>2003-04-16 20:28:45 +0000
commit4ad02e726d9b634372b037d4b352d8b63bb9e849 (patch)
tree463f4e5e0773c2c8ca3e891556fc0a36c83e3ab5 /include/llvm/Function.h
parent2c72b184b86152d4c9e00731d9257240f39ce20b (diff)
downloadllvm-4ad02e726d9b634372b037d4b352d8b63bb9e849.tar.gz
llvm-4ad02e726d9b634372b037d4b352d8b63bb9e849.tar.bz2
llvm-4ad02e726d9b634372b037d4b352d8b63bb9e849.tar.xz
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/Function.h')
-rw-r--r--include/llvm/Function.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h
index 885824d4f7..fe8216210d 100644
--- a/include/llvm/Function.h
+++ b/include/llvm/Function.h
@@ -71,8 +71,8 @@ public:
/// function is automatically inserted into the end of the function list for
/// the module.
///
- Function(const FunctionType *Ty, bool isInternal, const std::string &N = "",
- Module *M = 0);
+ Function(const FunctionType *Ty, LinkageTypes Linkage,
+ const std::string &N = "", Module *M = 0);
~Function();
// Specialize setName to handle symbol table majik...