From c25931673092b1dae646aeeac1d18f75d9640ec7 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 27 Oct 2001 08:28:11 +0000 Subject: * 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@988 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/Interpreter/Interpreter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.h') diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 5b12346..16cc569 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/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 ValuePlaneTy; -- cgit v1.1