diff options
author | Eli Bendersky <eliben@google.com> | 2012-12-05 22:11:02 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2012-12-05 22:11:02 +0000 |
commit | 5c10f509f45820d1198bfb975840e93a782745ac (patch) | |
tree | d035334f74255b1ca2cab584303873c0cafcc44f /lib/MC/MCAssembler.cpp | |
parent | 5807fd41a79357b9a9e75c4a4154b1da89d06c78 (diff) |
Change std::vector to SmallVector<4> and remove some unused methods.
This is more consistent with other vectors in this code. In addition, I ran some
tests compiling a large program and >96% of fragments have 4 or less fixups, so
SmallVector<4> is a good optimization.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169433 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCAssembler.cpp')
-rw-r--r-- | lib/MC/MCAssembler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCAssembler.cpp b/lib/MC/MCAssembler.cpp index 48aec668bf..457abd2a0a 100644 --- a/lib/MC/MCAssembler.cpp +++ b/lib/MC/MCAssembler.cpp @@ -870,7 +870,7 @@ void MCFragment::dump() { } OS << "] (" << Contents.size() << " bytes)"; - if (!DF->getFixups().empty()) { + if (DF->fixup_begin() != DF->fixup_end()) { OS << ",\n "; OS << " Fixups:["; for (MCDataFragment::const_fixup_iterator it = DF->fixup_begin(), |