summaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2007-09-17 18:44:13 +0000
committerDale Johannesen <dalej@apple.com>2007-09-17 18:44:13 +0000
commit1abac0d725374cb6e527d2a735a5272a4f7913fa (patch)
treeea85999d1ecea515b8d9d44f6e137cefbb0ccd75 /include/llvm/ExecutionEngine
parent76c1b97e4020faace8c95a127f1eab66c278fb58 (diff)
downloadllvm-1abac0d725374cb6e527d2a735a5272a4f7913fa.tar.gz
llvm-1abac0d725374cb6e527d2a735a5272a4f7913fa.tar.bz2
llvm-1abac0d725374cb6e527d2a735a5272a4f7913fa.tar.xz
Implement x86 long double in jit (not really
complete, but common cases work) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42043 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine')
-rw-r--r--include/llvm/ExecutionEngine/GenericValue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/GenericValue.h b/include/llvm/ExecutionEngine/GenericValue.h
index d0cd2cd0bc..fab82af405 100644
--- a/include/llvm/ExecutionEngine/GenericValue.h
+++ b/include/llvm/ExecutionEngine/GenericValue.h
@@ -31,7 +31,7 @@ struct GenericValue {
struct { unsigned int first; unsigned int second; } UIntPairVal;
unsigned char Untyped[8];
};
- APInt IntVal;
+ APInt IntVal; // also used for long doubles
GenericValue() : DoubleVal(0.0), IntVal(1,0) {}
GenericValue(void *V) : PointerVal(V), IntVal(1,0) { }