Add Symbol::exportedFunction member to hold llvm::Function * for app-callable version of function.

This commit is contained in:
Matt Pharr
2011-10-04 15:46:17 -07:00
parent 9b7f55a28e
commit 686d9975b6
3 changed files with 10 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ Symbol::Symbol(const std::string &n, SourcePos p, const Type *t,
StorageClass sc)
: pos(p), name(n) {
storagePtr = NULL;
function = NULL;
function = exportedFunction = NULL;
type = t;
constValue = NULL;
storageClass = sc;