diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-03-02 23:31:50 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-03-02 23:31:50 +0000 |
commit | 815196ca198c5e3e0c2e988c8cb357478abe70d2 (patch) | |
tree | ad8deeb1ba2fbc0aa2acdfb764bb63a462a9ed9f /llvm/lib/CodeGen/SplitKit.h | |
parent | 0532897f37b2dc0555be57875d4eec60ee750b99 (diff) | |
download | bcm5719-llvm-815196ca198c5e3e0c2e988c8cb357478abe70d2.tar.gz bcm5719-llvm-815196ca198c5e3e0c2e988c8cb357478abe70d2.zip |
Turn the Edit member into a pointer so it can change dynamically.
No functional change.
llvm-svn: 126898
Diffstat (limited to 'llvm/lib/CodeGen/SplitKit.h')
-rw-r--r-- | llvm/lib/CodeGen/SplitKit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SplitKit.h b/llvm/lib/CodeGen/SplitKit.h index 05de1505236..7b303617225 100644 --- a/llvm/lib/CodeGen/SplitKit.h +++ b/llvm/lib/CodeGen/SplitKit.h @@ -165,7 +165,7 @@ class SplitEditor { const TargetRegisterInfo &TRI; /// Edit - The current parent register and new intervals created. - LiveRangeEdit &Edit; + LiveRangeEdit *Edit; /// Index into Edit of the currently open interval. /// The index 0 is used for the complement, so the first interval started by |