diff options
author | Lang Hames <lhames@gmail.com> | 2012-02-17 18:44:18 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2012-02-17 18:44:18 +0000 |
commit | 3dc7c5138d219048d69952bead22f75efb984fa3 (patch) | |
tree | ae5c3b193189c27c476e42d0c7d542f703de562b /include/llvm/CodeGen | |
parent | ebad58dc58d73097b3546e7fcb6fd7c17336d413 (diff) | |
download | external_llvm-3dc7c5138d219048d69952bead22f75efb984fa3.zip external_llvm-3dc7c5138d219048d69952bead22f75efb984fa3.tar.gz external_llvm-3dc7c5138d219048d69952bead22f75efb984fa3.tar.bz2 |
Refactor 'handleMove' code in live intervals. Clients of LiveIntervals won't see
any changes.
Internally this adds a private inner class HMEditor, to LiveIntervals. HMEditor provides
an API for updating live intervals when code is moved or bundled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150826 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/LiveIntervalAnalysis.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/LiveIntervalAnalysis.h b/include/llvm/CodeGen/LiveIntervalAnalysis.h index 4bc37fd..ada12a8 100644 --- a/include/llvm/CodeGen/LiveIntervalAnalysis.h +++ b/include/llvm/CodeGen/LiveIntervalAnalysis.h @@ -391,6 +391,8 @@ namespace llvm { void printInstrs(raw_ostream &O) const; void dumpInstrs() const; + + class HMEditor; }; } // End llvm namespace |