diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-09-25 20:57:48 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-09-25 20:57:48 +0000 |
commit | e51b9497f721557d15ab36a27ca257493ed36713 (patch) | |
tree | f415d39891efd3a73ac0349e7790245f92bd31ce /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | b0a1edce8cb72f4dfc20322aee82f11f05734328 (diff) | |
download | bcm5719-llvm-e51b9497f721557d15ab36a27ca257493ed36713.tar.gz bcm5719-llvm-e51b9497f721557d15ab36a27ca257493ed36713.zip |
Move remaining methods inside the Attributes class. Merge the 'Attribute' namespaces.
llvm-svn: 164631
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 2b2c36ba0f3..b69a362896c 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) { Attributes ReconstitutedAttr = - Attribute::decodeLLVMAttributesForBitcode(Record[i+1]); + Attributes::decodeLLVMAttributesForBitcode(Record[i+1]); Record[i+1] = ReconstitutedAttr.Raw(); } |