diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-15 20:34:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-15 20:34:05 +0000 |
commit | fddc755a6f6042457b04d1c070e2a032add56b39 (patch) | |
tree | 028a63d367bde2148ab9da317b91c39f8e922eda /lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | d344242f2e1e4a2ca272ee140a991141eedaa279 (diff) |
- Fix LLI so that it simulates the endianness of the target machine
correctly, despite the fact that the host machine might not be the same.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4180 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 3573d17fb4..a02a0abd05 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -37,6 +37,7 @@ union GenericValue { double DoubleVal; float FloatVal; PointerTy PointerVal; + unsigned char Untyped[8]; }; // AllocaHolder - Object to track all of the blocks of memory allocated by |