top | up | prev | next

IntToFloatInstruction Class

Definition at line 197 of Instruction.hpp

Constructors

IntToFloatInstruction(Value* arg_, Type* destType_)

Member Functions

void Write(CodeFormatter& formatter, Function& function, Context& context)

Constructor Details

IntToFloatInstruction Constructor

cmsxi::IntToFloatInstruction::IntToFloatInstruction(Value * arg_, Type * destType_)

Definition at line 307 of Instruction.cpp :
307 : UnaryTypeInstruction(arg_destType_)
308 {
309 }


Declaration at line 200 of Instruction.hpp


Member Function Details

Write Member Function

void cmsxi::IntToFloatInstruction::Write(CodeFormatter& formatter, Function & function, Context & context)

Definition at line 311 of Instruction.cpp :
312 {
313     WriteResult(formatterfunctioncontext);
314     formatter.Write(" = inttofloat ");
315     WriteArg(formattercontext);
316     WriteMetadataRef(formatter);
317 }


Calls: cmsxi::Instruction::WriteMetadataRef , cmsxi::Instruction::WriteResult , cmsxi::UnaryInstruction::WriteArg


top | up | prev | next