MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / FloatConstDouble

Method FloatConstDouble

lowlevelilinstruction.cpp:3110–3119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3108
3109
3110ExprId 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
3122ExprId LowLevelILFunction::Flag(uint32_t flag, const ILSourceLocation& loc)

Callers 2

GetFloatFunction · 0.45
il.cppFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected