GlobalISel: Add comment to clarify G_BUILD_VECTOR

llvm-svn: 351428
This commit is contained in:
Matt Arsenault 2019-01-17 10:50:07 +00:00
parent afd1f8cb4f
commit 416efa3eb6

View File

@ -689,7 +689,9 @@ def G_MERGE_VALUES : GenericInstruction {
let hasSideEffects = 0;
}
/// Create a vector from multiple scalar registers.
/// Create a vector from multiple scalar registers. No implicit
/// conversion is performed (i.e. the result element type must be the
/// same as all source operands)
def G_BUILD_VECTOR : GenericInstruction {
let OutOperandList = (outs type0:$dst);
let InOperandList = (ins type1:$src0, variable_ops);