[llvm] r279307 - GlobalISel: fix stale comment
Tim Northover via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 19 13:09:01 PDT 2016
Author: tnorthover
Date: Fri Aug 19 15:09:01 2016
New Revision: 279307
URL: http://llvm.org/viewvc/llvm-project?rev=279307&view=rev
Log:
GlobalISel: fix stale comment
Modified:
llvm/trunk/include/llvm/Target/GenericOpcodes.td
Modified: llvm/trunk/include/llvm/Target/GenericOpcodes.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/GenericOpcodes.td?rev=279307&r1=279306&r2=279307&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/GenericOpcodes.td (original)
+++ llvm/trunk/include/llvm/Target/GenericOpcodes.td Fri Aug 19 15:09:01 2016
@@ -315,8 +315,9 @@ def G_EXTRACT : Instruction {
let hasSideEffects = 0;
}
-// Combine a sequence of generic vregs into a single larger value (starting at
-// bit 0).
+// Insert a sequence of smaller registers into a larger one at the specified
+// indices (interleaved with the values in the operand list "op0, bit0, op1,
+// bit1, ...")).
def G_INSERT : Instruction {
let OutOperandList = (outs unknown:$dst);
let InOperandList = (ins unknown:$src, variable_ops);
More information about the llvm-commits
mailing list