We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f1d98 commit 53f602bCopy full SHA for 53f602b
llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
@@ -1048,7 +1048,7 @@ void RISCVDAGToDAGISel::Select(SDNode *Node) {
1048
1049
if (Subtarget->enablePExtCodeGen() && isApplicableToPLI(Imm) &&
1050
hasAllWUsers(Node)) {
1051
- // If its 4 packed 8-bit integers or 2 packed signed 16-bit integers, we
+ // If it's 4 packed 8-bit integers or 2 packed signed 16-bit integers, we
1052
// can simply copy lower 32 bits to higher 32 bits to make it able to
1053
// rematerialize to PLI_B or PLI_H
1054
Imm = ((uint64_t)Imm << 32) | (Imm & 0xFFFFFFFF);
0 commit comments