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 | 6a1a65f9deb0a276daf36447a13f3cb9cb3a5f21 (patch) | |
tree | b151e82918c4ee90f882cf4e1b2767e44d4e1927 /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | aaf6ee80de7cb213cc63abf1f21729ba8a1962c9 (diff) | |
download | bcm5719-llvm-6a1a65f9deb0a276daf36447a13f3cb9cb3a5f21.tar.gz bcm5719-llvm-6a1a65f9deb0a276daf36447a13f3cb9cb3a5f21.zip |
- 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.
llvm-svn: 4180
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index 3573d17fb4b..a02a0abd05c 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/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 |