MC CFG: Remap enough for the inserted instruction.
[oota-llvm.git] / lib / MC / MCAtom.cpp
index 2626b39db4c744498c0f5ad51063e22bdf86d3f4..f3ea6c344d896fc4ca8051a8268163abf9b9a3e5 100644 (file)
@@ -72,8 +72,8 @@ MCDataAtom *MCDataAtom::split(uint64_t SplitPt) {
 // MCTextAtom
 
 void MCTextAtom::addInst(const MCInst &I, uint64_t Size) {
-  if (NextInstAddress > End)
-    remap(Begin, NextInstAddress);
+  if (NextInstAddress + Size - 1 > End)
+    remap(Begin, NextInstAddress + Size - 1);
   Insts.push_back(MCDecodedInst(I, NextInstAddress, Size));
   NextInstAddress += Size;
 }