Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions llvm/include/llvm/Target/Target.td
Original file line number Diff line number Diff line change
Expand Up @@ -538,11 +538,11 @@ include "llvm/Target/TargetInstrPredicate.td"
include "llvm/Target/TargetSchedule.td"

class InstructionEncoding {
// Size of encoded instruction.
// Size of encoded instruction in bytes.
int Size;

// The "namespace" in which this instruction exists, on targets like ARM
// which multiple ISA namespaces exist.
// The "namespace" in which this instruction exists (on targets like ARM
// where multiple ISA namespaces exist).
string DecoderNamespace = "";

// List of predicates which will be turned into isel matching code.
Expand Down
Loading