| 3108 | |
| 3109 | |
| 3110 | ExprId LowLevelILFunction::FloatConstDouble(double val, const ILSourceLocation& loc) |
| 3111 | { |
| 3112 | union |
| 3113 | { |
| 3114 | double f; |
| 3115 | uint64_t i; |
| 3116 | } bits; |
| 3117 | bits.f = val; |
| 3118 | return AddExprWithLocation(LLIL_FLOAT_CONST, loc, 8, 0, bits.i); |
| 3119 | } |
| 3120 | |
| 3121 | |
| 3122 | ExprId LowLevelILFunction::Flag(uint32_t flag, const ILSourceLocation& loc) |