diff options
| author | Frits van Bommel <fvbommel@gmail.com> | 2011-07-18 12:00:32 +0000 |
|---|---|---|
| committer | Frits van Bommel <fvbommel@gmail.com> | 2011-07-18 12:00:32 +0000 |
| commit | 717d7edd3e01d928ad9a186f2464331c86f71ef9 (patch) | |
| tree | e92ccf103dd045391f4ce3cd7edcb1bf8d318ffd /llvm/lib/CodeGen/LiveRangeEdit.h | |
| parent | 23db45e99c833273144cf2d86e678887944afe6b (diff) | |
| download | bcm5719-llvm-717d7edd3e01d928ad9a186f2464331c86f71ef9.tar.gz bcm5719-llvm-717d7edd3e01d928ad9a186f2464331c86f71ef9.zip | |
Migrate LLVM and Clang to use the new makeArrayRef(...) functions where previously explicit non-default constructors were used.
Mostly mechanical with some manual reformatting.
llvm-svn: 135390
Diffstat (limited to 'llvm/lib/CodeGen/LiveRangeEdit.h')
| -rw-r--r-- | llvm/lib/CodeGen/LiveRangeEdit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveRangeEdit.h b/llvm/lib/CodeGen/LiveRangeEdit.h index db6740c1fbc..9b0a671ea9e 100644 --- a/llvm/lib/CodeGen/LiveRangeEdit.h +++ b/llvm/lib/CodeGen/LiveRangeEdit.h @@ -115,7 +115,7 @@ public: LiveInterval *get(unsigned idx) const { return newRegs_[idx+firstNew_]; } ArrayRef<LiveInterval*> regs() const { - return ArrayRef<LiveInterval*>(newRegs_).slice(firstNew_); + return makeArrayRef(newRegs_).slice(firstNew_); } /// FIXME: Temporary accessors until we can get rid of |

