From 1abac0d725374cb6e527d2a735a5272a4f7913fa Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Mon, 17 Sep 2007 18:44:13 +0000 Subject: 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 --- include/llvm/ExecutionEngine/GenericValue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/llvm/ExecutionEngine') 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) { } -- cgit v1.2.3