commit | fddc755a6f6042457b04d1c070e2a032add56b39 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Oct 15 20:34:05 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Oct 15 20:34:05 2002 +0000 |
tree | 028a63d367bde2148ab9da317b91c39f8e922eda | |
parent | d344242f2e1e4a2ca272ee140a991141eedaa279 [diff] [blame] |
- 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
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 3573d17..a02a0ab 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -37,6 +37,7 @@ double DoubleVal; float FloatVal; PointerTy PointerVal; + unsigned char Untyped[8]; }; // AllocaHolder - Object to track all of the blocks of memory allocated by