C++: Add last remaining QLDoc to Opcode.qll

This commit is contained in:
Dave Bartolomeo
2020-06-26 17:25:30 -04:00
parent bdf121f3b8
commit 4dcdd8a0ee
2 changed files with 12 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
/**
* Provides `Opcode`s that specify the operation performed by an `Instruction`, as well as metadata
* about those opcodes, such as operand kinds and memory accesses.
*/
private import internal.OpcodeImports as Imports
private import internal.OperandTag
import Imports::MemoryAccessKind
@@ -87,6 +92,7 @@ private newtype TOpcode =
TNewObj()
class Opcode extends TOpcode {
/** Gets a textual representation of this element. */
string toString() { result = "UnknownOpcode" }
/**