diff options
author | Reid Kleckner <reid@kleckner.net> | 2013-10-21 19:18:31 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2013-10-21 19:18:31 +0000 |
commit | 82e7eda150eda4e4635d96b7725db6d5ede192de (patch) | |
tree | 0b46fbb6ed58b3b0a0c4062aebbabd5e645109d2 /lib | |
parent | 3baa3c37ce2cd7db7a4840e66f22a08ce1702787 (diff) | |
download | external_llvm-82e7eda150eda4e4635d96b7725db6d5ede192de.zip external_llvm-82e7eda150eda4e4635d96b7725db6d5ede192de.tar.gz external_llvm-82e7eda150eda4e4635d96b7725db6d5ede192de.tar.bz2 |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DIE.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DIE.cpp b/lib/CodeGen/AsmPrinter/DIE.cpp index 956ef8e..f9110c0 100644 --- a/lib/CodeGen/AsmPrinter/DIE.cpp +++ b/lib/CodeGen/AsmPrinter/DIE.cpp @@ -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. |