aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC/MCAsmLayout.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-12-06 19:08:48 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-12-06 19:08:48 +0000
commit179821ac1f282ef6f8d24d5ea346028aee8ba4c7 (patch)
tree25a5861add458a1bafe0a084a2cdc08827ffc48e /include/llvm/MC/MCAsmLayout.h
parentc76c59840b7a4491afdcd2f35483f8d6e5ab533a (diff)
downloadexternal_llvm-179821ac1f282ef6f8d24d5ea346028aee8ba4c7.zip
external_llvm-179821ac1f282ef6f8d24d5ea346028aee8ba4c7.tar.gz
external_llvm-179821ac1f282ef6f8d24d5ea346028aee8ba4c7.tar.bz2
Remove the instruction fragment to data fragment lowering since it was causing
freed data to be read. I will open a bug to track it being reenabled. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121028 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCAsmLayout.h')
-rw-r--r--include/llvm/MC/MCAsmLayout.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/llvm/MC/MCAsmLayout.h b/include/llvm/MC/MCAsmLayout.h
index cad7664..ce9692d 100644
--- a/include/llvm/MC/MCAsmLayout.h
+++ b/include/llvm/MC/MCAsmLayout.h
@@ -58,16 +58,6 @@ public:
/// fragments size should have already been updated.
void Invalidate(MCFragment *F);
- /// \brief Update the layout, replacing Src with Dst. The contents
- /// of Src and Dst are not modified, and must be copied by the caller.
- /// Src will be removed from the layout, but not deleted.
- void ReplaceFragment(MCFragment *Src, MCFragment *Dst);
-
- /// \brief Update the layout to coalesce Src into Dst. The contents
- /// of Src and Dst are not modified, and must be coalesced by the caller.
- /// Src will be removed from the layout, but not deleted.
- void CoalesceFragments(MCFragment *Src, MCFragment *Dst);
-
/// \brief Perform a full layout.
void LayoutFile();