MCPcopy Create free account
hub / github.com/StanfordPL/x64asm / Code

Method Code

src/code.h:36–36  ·  view source on GitHub ↗

Creates an empty code sequence. */

Source from the content-addressed store, hash-verified

34 public:
35 /** Creates an empty code sequence. */
36 Code() : std::vector<Instruction>() {}
37 /** Creates a code sequence using initializer list syntax. */
38 Code(const std::initializer_list<Instruction>& is) : std::vector<Instruction>(is) {}
39 /** Creates a code sequence using the instruction in an stl container. */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected