This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rG2d1f471e45af: [Mach0] Fix unused-variable warnings (authored by ehjogab, committed by dstenb). Herald added a project: LLVM.
Changed prior to commit: https://reviews.llvm.org/D91519?vs=305984&id=306339#toc Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D91519/new/ https://reviews.llvm.org/D91519 Files: lld/MachO/SymbolTable.cpp Index: lld/MachO/SymbolTable.cpp =================================================================== --- lld/MachO/SymbolTable.cpp +++ lld/MachO/SymbolTable.cpp @@ -134,7 +134,7 @@ // FIXME: Make every symbol (including absolute symbols) contain a // reference to their originating file, then add that file name to this // error message. - if (auto *defined = dyn_cast<Defined>(s)) + if (isa<Defined>(s)) error("found defined symbol with illegal name " + DSOHandle::name); } replaceSymbol<DSOHandle>(s, header);
Index: lld/MachO/SymbolTable.cpp =================================================================== --- lld/MachO/SymbolTable.cpp +++ lld/MachO/SymbolTable.cpp @@ -134,7 +134,7 @@ // FIXME: Make every symbol (including absolute symbols) contain a // reference to their originating file, then add that file name to this // error message. - if (auto *defined = dyn_cast<Defined>(s)) + if (isa<Defined>(s)) error("found defined symbol with illegal name " + DSOHandle::name); } replaceSymbol<DSOHandle>(s, header);
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits