[PATCH] D39881: [RISCV] Silence an unused variable warning in release builds [NFC]
Mandeep Singh Grang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 9 16:37:39 PST 2017
mgrang updated this revision to Diff 122364.
mgrang added a comment.
Removed another redundant return in RISCVRegisterInfo.cpp.
Repository:
rL LLVM
https://reviews.llvm.org/D39881
Files:
lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
lib/Target/RISCV/RISCVRegisterInfo.cpp
Index: lib/Target/RISCV/RISCVRegisterInfo.cpp
===================================================================
--- lib/Target/RISCV/RISCVRegisterInfo.cpp
+++ lib/Target/RISCV/RISCVRegisterInfo.cpp
@@ -82,7 +82,6 @@
MI.getOperand(FIOperandNum).ChangeToRegister(FrameReg, false);
MI.getOperand(FIOperandNum + 1).ChangeToImmediate(Offset);
- return;
}
unsigned RISCVRegisterInfo::getFrameRegister(const MachineFunction &MF) const {
Index: lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
===================================================================
--- lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
+++ lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
@@ -161,26 +161,27 @@
MutableArrayRef<char> Data, uint64_t Value,
bool IsResolved) const {
MCContext &Ctx = Asm.getContext();
- MCFixupKind Kind = Fixup.getKind();
- unsigned NumBytes = (getFixupKindInfo(Kind).TargetSize + 7) / 8;
+ MCFixupKindInfo Info = getFixupKindInfo(Fixup.getKind());
if (!Value)
return; // Doesn't change encoding.
- MCFixupKindInfo Info = getFixupKindInfo(Fixup.getKind());
// Apply any target-specific value adjustments.
Value = adjustFixupValue(Fixup, Value, Ctx);
// Shift the value into position.
Value <<= Info.TargetOffset;
unsigned Offset = Fixup.getOffset();
+
+#ifndef NDEBUG
+ unsigned NumBytes = (Info.TargetSize + 7) / 8;
assert(Offset + NumBytes <= Data.size() && "Invalid fixup offset!");
+#endif
// For each byte of the fragment that the fixup touches, mask in the
// bits from the fixup value.
for (unsigned i = 0; i != 4; ++i) {
Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
}
- return;
}
std::unique_ptr<MCObjectWriter>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39881.122364.patch
Type: text/x-patch
Size: 1781 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171110/59473fba/attachment.bin>
More information about the llvm-commits
mailing list