summaryrefslogtreecommitdiff
path: root/lib/Bitcode
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-12-30 01:05:42 +0000
committerBill Wendling <isanbard@gmail.com>2012-12-30 01:05:42 +0000
commitc966e08a9895a39f575d917a8390c8e359f042f5 (patch)
treed3365cdccecdb1827e2250a5dee87173313a3fbd /lib/Bitcode
parentf35cb76a7064eb389ff8f293234f55db8e7e895c (diff)
downloadllvm-c966e08a9895a39f575d917a8390c8e359f042f5.tar.gz
llvm-c966e08a9895a39f575d917a8390c8e359f042f5.tar.bz2
llvm-c966e08a9895a39f575d917a8390c8e359f042f5.tar.xz
s/Raw/getBitMask/g to be more in line with current naming conventions. This method won't be sticking around.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171244 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode')
-rw-r--r--lib/Bitcode/Reader/BitcodeReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp
index 946767911b..48c02c8529 100644
--- a/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/lib/Bitcode/Reader/BitcodeReader.cpp
@@ -477,7 +477,7 @@ bool BitcodeReader::ParseAttributeBlock() {
for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Attribute ReconstitutedAttr =
Attribute::decodeLLVMAttributesForBitcode(Context, Record[i+1]);
- Record[i+1] = ReconstitutedAttr.Raw();
+ Record[i+1] = ReconstitutedAttr.getBitMask();
}
for (unsigned i = 0, e = Record.size(); i != e; i += 2) {