summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-27 08:28:11 +0000
committerChris Lattner <sabre@nondot.org>2001-10-27 08:28:11 +0000
commit0b00b31c78d4131d3cbcb98066375f7901602b2a (patch)
tree79778c98ce55012c253294b5d4d56bb97057cf1b /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
parent6642eec003caf3afa90d8eb8b71bc9b41015f31f (diff)
downloadbcm5719-llvm-0b00b31c78d4131d3cbcb98066375f7901602b2a.tar.gz
bcm5719-llvm-0b00b31c78d4131d3cbcb98066375f7901602b2a.zip
* Make pointer values work better by treating them uniformly as 64 bit values.
This causes code that is generated by gcc to work better. * Implement mul & div * Export malloc, free, and pow * add strtol, atoi, and atol to the runtime library llvm-svn: 988
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r--llvm/lib/ExecutionEngine/Interpreter/Interpreter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
index 5b123466aa6..16cc569ad0f 100644
--- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -29,7 +29,7 @@ union GenericValue {
int64_t LongVal;
double DoubleVal;
float FloatVal;
- GenericValue *PointerVal;
+ uint64_t PointerVal;
};
typedef vector<GenericValue> ValuePlaneTy;
OpenPOWER on IntegriCloud