mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-12 18:33:22 +00:00
Add APIntVal as a possible GenericeValue.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34879 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a7288df62d
commit
1416862d7c
@ -20,6 +20,8 @@
|
||||
namespace llvm {
|
||||
|
||||
typedef uintptr_t PointerTy;
|
||||
class APInt;
|
||||
class Type;
|
||||
|
||||
union GenericValue {
|
||||
bool Int1Val;
|
||||
@ -27,6 +29,7 @@ union GenericValue {
|
||||
unsigned short Int16Val;
|
||||
unsigned int Int32Val;
|
||||
uint64_t Int64Val;
|
||||
APInt *APIntVal;
|
||||
double DoubleVal;
|
||||
float FloatVal;
|
||||
struct { unsigned int first; unsigned int second; } UIntPairVal;
|
||||
|
Loading…
x
Reference in New Issue
Block a user