summaryrefslogtreecommitdiff
path: root/MLKLexicalContext-MLKLLVMCompilation.mm
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-16 21:56:34 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-16 22:02:00 +0200
commita78119062f100f3da6e1243ce464c2819da64a2b (patch)
tree1f3a50b735f987c1a4e8cd2212c1ab196d206851 /MLKLexicalContext-MLKLLVMCompilation.mm
parenta3ce495d346709238b24a381ef2ab80a8cf03c95 (diff)
MLKLexicalContext(MLKLLVMCompilation): Further fix value types.
Diffstat (limited to 'MLKLexicalContext-MLKLLVMCompilation.mm')
-rw-r--r--MLKLexicalContext-MLKLLVMCompilation.mm12
1 files changed, 7 insertions, 5 deletions
diff --git a/MLKLexicalContext-MLKLLVMCompilation.mm b/MLKLexicalContext-MLKLLVMCompilation.mm
index 9ca18e4..744351a 100644
--- a/MLKLexicalContext-MLKLLVMCompilation.mm
+++ b/MLKLexicalContext-MLKLLVMCompilation.mm
@@ -48,19 +48,21 @@ using namespace std;
return (flag && [flag boolValue]);
}
--(Value *) functionCellValueForSymbol:(id)name
+-(Instruction *) functionCellValueForSymbol:(id)name
{
std::vector<const Type *> types (1, PointerType::get(Type::Int8Ty, 0));
return (new IntToPtrInst (ConstantInt::get(Type::Int64Ty,
(uint64_t)[self functionCellForSymbol:name],
false),
- PointerType::get(FunctionType::get(PointerType::get(Type::Int8Ty, 0),
- types,
- true),
+ PointerType::get(PointerType::get(FunctionType::get(PointerType::get(Type::Int8Ty,
+ 0),
+ types,
+ true),
+ 0),
0)));
}
--(Value *) closureDataPointerValueForSymbol:(id)name
+-(Instruction *) closureDataPointerValueForSymbol:(id)name
{
return (new IntToPtrInst (ConstantInt::get(Type::Int64Ty,
(uint64_t)[self closureDataPointerForSymbol:name],