mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Fix the build in DIE.cpp with MSVC 2010
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193106 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3baa3c37ce
commit
82e7eda150
@ -34,8 +34,10 @@ using namespace llvm;
|
||||
/// Profile - Used to gather unique data for the abbreviation folding set.
|
||||
///
|
||||
void DIEAbbrevData::Profile(FoldingSetNodeID &ID) const {
|
||||
ID.AddInteger(Attribute);
|
||||
ID.AddInteger(Form);
|
||||
// Explicitly cast to an integer type for which FoldingSetNodeID has
|
||||
// overloads. Otherwise MSVC 2010 thinks this call is ambiguous.
|
||||
ID.AddInteger(unsigned(Attribute));
|
||||
ID.AddInteger(unsigned(Form));
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
@ -45,7 +47,7 @@ void DIEAbbrevData::Profile(FoldingSetNodeID &ID) const {
|
||||
/// Profile - Used to gather unique data for the abbreviation folding set.
|
||||
///
|
||||
void DIEAbbrev::Profile(FoldingSetNodeID &ID) const {
|
||||
ID.AddInteger(Tag);
|
||||
ID.AddInteger(unsigned(Tag));
|
||||
ID.AddInteger(ChildrenFlag);
|
||||
|
||||
// For each attribute description.
|
||||
|
Loading…
x
Reference in New Issue
Block a user