Skip to content

Commit 80be66b

Browse files
committed
fixup! Remove extra // from a comment
1 parent bb03c4c commit 80be66b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/RISCV/MCTargetDesc/RISCVMatInt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ static void generateInstSeqImpl(int64_t Val, const MCSubtargetInfo &STI,
145145
Val >>= ShiftAmount;
146146

147147
// If the remaining bits don't fit in 12 bits, we might be able to reduce
148-
// the // shift amount in order to use LUI which will zero the lower 12
148+
// the shift amount in order to use LUI which will zero the lower 12
149149
// bits.
150150
if (ShiftAmount > 12 && !isInt<12>(Val)) {
151151
if (isInt<32>((uint64_t)Val << 12)) {

0 commit comments

Comments
 (0)