summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit3e4c4c960735e8c097b2489f9e30f4d4730e7367 (patch)
tree6fd51d4e3d345d466b0b5a87fd1d8eb02b7b4e48 /llvm/lib/Bitcode
parent5a495a5c96c8ec1976bd986413d15010646ffc09 (diff)
downloadbcm5719-llvm-3e4c4c960735e8c097b2489f9e30f4d4730e7367.tar.gz
bcm5719-llvm-3e4c4c960735e8c097b2489f9e30f4d4730e7367.zip
s/Raw/getBitMask/g to be more in line with current naming conventions. This method won't be sticking around.
llvm-svn: 171244
Diffstat (limited to 'llvm/lib/Bitcode')
-rw-r--r--llvm/lib/Bitcode/Reader/BitcodeReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
index 946767911b6..48c02c85297 100644
--- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/llvm/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) {
OpenPOWER on IntegriCloud