@@ -187,7 +187,8 @@ static unsigned CombineSymbolTypes(unsigned T1, unsigned T2) {
187
187
return T2;
188
188
}
189
189
190
- bool MCELFStreamer::emitSymbolAttribute (MCSymbol *S, MCSymbolAttr Attribute) {
190
+ bool MCELFStreamer::emitSymbolAttribute (MCSymbol *S, MCSymbolAttr Attribute,
191
+ SMLoc Loc) {
191
192
auto *Symbol = cast<MCSymbolELF>(S);
192
193
193
194
// Adding a symbol attribute always introduces the symbol, note that an
@@ -229,8 +230,8 @@ bool MCELFStreamer::emitSymbolAttribute(MCSymbol *S, MCSymbolAttr Attribute) {
229
230
// traditionally set the binding to STB_GLOBAL. This is error-prone, so we
230
231
// error on such cases. Note, we also disallow changed binding from .local.
231
232
if (Symbol->isBindingSet () && Symbol->getBinding () != ELF::STB_GLOBAL)
232
- getContext ().reportError (SMLoc () , Symbol->getName () +
233
- " changed binding to STB_GLOBAL" );
233
+ getContext ().reportError (Loc , Symbol->getName () +
234
+ " changed binding to STB_GLOBAL" );
234
235
Symbol->setBinding (ELF::STB_GLOBAL);
235
236
Symbol->setExternal (true );
236
237
break ;
@@ -240,16 +241,16 @@ bool MCELFStreamer::emitSymbolAttribute(MCSymbol *S, MCSymbolAttr Attribute) {
240
241
// For `.global x; .weak x`, both MC and GNU as set the binding to STB_WEAK.
241
242
// We emit a warning for now but may switch to an error in the future.
242
243
if (Symbol->isBindingSet () && Symbol->getBinding () != ELF::STB_WEAK)
243
- getContext ().reportWarning (SMLoc () , Symbol->getName () +
244
- " changed binding to STB_WEAK" );
244
+ getContext ().reportWarning (Loc , Symbol->getName () +
245
+ " changed binding to STB_WEAK" );
245
246
Symbol->setBinding (ELF::STB_WEAK);
246
247
Symbol->setExternal (true );
247
248
break ;
248
249
249
250
case MCSA_Local:
250
251
if (Symbol->isBindingSet () && Symbol->getBinding () != ELF::STB_LOCAL)
251
- getContext ().reportError (SMLoc () , Symbol->getName () +
252
- " changed binding to STB_LOCAL" );
252
+ getContext ().reportError (Loc , Symbol->getName () +
253
+ " changed binding to STB_LOCAL" );
253
254
Symbol->setBinding (ELF::STB_LOCAL);
254
255
Symbol->setExternal (false );
255
256
break ;
0 commit comments