Skip to content

Commit 0e3d7e6

Browse files
committed
Fix gcc build after de3a485 due to a gcc bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92598
This should fix gcc based builders such as http://lab.llvm.org:8011/#/builders/76/builds/1683
1 parent 5ef029d commit 0e3d7e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ using namespace llvm::XCOFF;
8383
// This specialization is needed here because that type is used as keys in the
8484
// map representing TOC entries.
8585
template <>
86-
struct DenseMapInfo<std::pair<const MCSymbol *, MCSymbolRefExpr::VariantKind>> {
86+
struct llvm::DenseMapInfo<std::pair<const MCSymbol *, MCSymbolRefExpr::VariantKind>> {
8787
using TOCKey = std::pair<const MCSymbol *, MCSymbolRefExpr::VariantKind>;
8888

8989
static inline TOCKey getEmptyKey() {

0 commit comments

Comments
 (0)