s/Raw/getBitMask/g to be more in line with current naming conventions. This method won't be sticking around.

llvm-svn: 171244
This commit is contained in:
Bill Wendling
2012-12-30 01:05:42 +00:00
parent 5a495a5c96
commit 3e4c4c9607
5 changed files with 24 additions and 23 deletions

View File

@@ -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) {