Revert s/Raw/getBitMask/g name change. This is possibly causing LTO test hangings.

llvm-svn: 172020
This commit is contained in:
Bill Wendling
2013-01-09 23:36:50 +00:00
parent 2ce0ac5a8c
commit 3b65187d2f
5 changed files with 28 additions and 25 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.getBitMask();
Record[i+1] = ReconstitutedAttr.Raw();
}
for (unsigned i = 0, e = Record.size(); i != e; i += 2) {