diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-11-07 01:56:04 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-11-07 01:56:04 +0000 |
commit | 54c3ca694a690a6b49ef2bd4ca4a300c1b205e63 (patch) | |
tree | 01e07cbe703057fdaba713c6479b66816493db1f | |
parent | 71fe81fd2502fda03249bd1eb242ea7ddb3fc5ee (diff) | |
download | bcm5719-llvm-54c3ca694a690a6b49ef2bd4ca4a300c1b205e63.tar.gz bcm5719-llvm-54c3ca694a690a6b49ef2bd4ca4a300c1b205e63.zip |
[OperandBundles] Rename accessor, NFC
Rename getOperandBundle to getOperandBundleAt since that's more obvious.
llvm-svn: 252388
-rw-r--r-- | llvm/include/llvm/IR/CallSite.h | 4 | ||||
-rw-r--r-- | llvm/include/llvm/IR/InstrTypes.h | 6 | ||||
-rw-r--r-- | llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/IR/AsmWriter.cpp | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/llvm/include/llvm/IR/CallSite.h b/llvm/include/llvm/IR/CallSite.h index dd3ebf228a0..ffea707a32d 100644 --- a/llvm/include/llvm/IR/CallSite.h +++ b/llvm/include/llvm/IR/CallSite.h @@ -375,8 +375,8 @@ public: CALLSITE_DELEGATE_GETTER(getNumTotalBundleOperands()); } - OperandBundleUse getOperandBundle(unsigned Index) const { - CALLSITE_DELEGATE_GETTER(getOperandBundle(Index)); + OperandBundleUse getOperandBundleAt(unsigned Index) const { + CALLSITE_DELEGATE_GETTER(getOperandBundleAt(Index)); } Optional<OperandBundleUse> getOperandBundle(StringRef Name) const { diff --git a/llvm/include/llvm/IR/InstrTypes.h b/llvm/include/llvm/IR/InstrTypes.h index 3fd6e1b678a..e96f7ad1036 100644 --- a/llvm/include/llvm/IR/InstrTypes.h +++ b/llvm/include/llvm/IR/InstrTypes.h @@ -1232,7 +1232,7 @@ public: } /// \brief Return the operand bundle at a specific index. - OperandBundleUse getOperandBundle(unsigned Index) const { + OperandBundleUse getOperandBundleAt(unsigned Index) const { assert(Index < getNumOperandBundles() && "Index out of bounds!"); return operandBundleFromBundleOpInfo(*(bundle_op_info_begin() + Index)); } @@ -1242,7 +1242,7 @@ public: unsigned countOperandBundlesOfType(StringRef Name) const { unsigned Count = 0; for (unsigned i = 0, e = getNumOperandBundles(); i != e; ++i) - if (getOperandBundle(i).Tag == Name) + if (getOperandBundleAt(i).Tag == Name) Count++; return Count; @@ -1256,7 +1256,7 @@ public: assert(countOperandBundlesOfType(Name) < 2 && "Precondition violated!"); for (unsigned i = 0, e = getNumOperandBundles(); i != e; ++i) { - OperandBundleUse U = getOperandBundle(i); + OperandBundleUse U = getOperandBundleAt(i); if (U.Tag == Name) return U; } diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp index b88e55c92cb..7497535d561 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -1738,7 +1738,7 @@ static void WriteOperandBundles(BitstreamWriter &Stream, ImmutableCallSite CS, LLVMContext &C = CS.getInstruction()->getContext(); for (unsigned i = 0, e = CS.getNumOperandBundles(); i != e; ++i) { - const auto &Bundle = CS.getOperandBundle(i); + const auto &Bundle = CS.getOperandBundleAt(i); Record.push_back(C.getOperandBundleTagID(Bundle.Tag)); for (auto &Input : Bundle.Inputs) diff --git a/llvm/lib/IR/AsmWriter.cpp b/llvm/lib/IR/AsmWriter.cpp index 2f8a3406a37..1816ea2102b 100644 --- a/llvm/lib/IR/AsmWriter.cpp +++ b/llvm/lib/IR/AsmWriter.cpp @@ -2169,7 +2169,7 @@ void AssemblyWriter::writeOperandBundles(ImmutableCallSite CS) { bool FirstBundle = true; for (unsigned i = 0, e = CS.getNumOperandBundles(); i != e; ++i) { - OperandBundleUse BU = CS.getOperandBundle(i); + OperandBundleUse BU = CS.getOperandBundleAt(i); if (!FirstBundle) Out << ", "; |