@@ -14,7 +14,8 @@ use rustc_data_structures::fx::FxHashSet;
14
14
use rustc_data_structures:: ptr_key:: PtrKey ;
15
15
use rustc_data_structures:: sync:: Lrc ;
16
16
use rustc_errors:: struct_span_err;
17
- use rustc_expand:: base:: { Indeterminate , InvocationRes , ResolverExpand , SyntaxExtension } ;
17
+ use rustc_expand:: base:: { Indeterminate , InvocationRes , ResolverExpand } ;
18
+ use rustc_expand:: base:: { SyntaxExtension , SyntaxExtensionKind } ;
18
19
use rustc_expand:: compile_declarative_macro;
19
20
use rustc_expand:: expand:: { AstFragment , Invocation , InvocationKind } ;
20
21
use rustc_feature:: is_builtin_attr_name;
@@ -176,10 +177,11 @@ impl<'a> ResolverExpand for Resolver<'a> {
176
177
parent_scope. module . unexpanded_invocations . borrow_mut ( ) . remove ( & expansion) ;
177
178
}
178
179
179
- fn register_builtin_macro ( & mut self , ident : Ident , ext : SyntaxExtension ) {
180
- if self . builtin_macros . insert ( ident . name , BuiltinMacroState :: NotYetSeen ( ext) ) . is_some ( ) {
180
+ fn register_builtin_macro ( & mut self , name : Symbol , ext : SyntaxExtensionKind ) {
181
+ if self . builtin_macros . insert ( name, BuiltinMacroState :: NotYetSeen ( ext) ) . is_some ( ) {
181
182
self . session
182
- . span_err ( ident. span , & format ! ( "built-in macro `{}` was already defined" , ident) ) ;
183
+ . diagnostic ( )
184
+ . bug ( & format ! ( "built-in macro `{}` was already registered" , name) ) ;
183
185
}
184
186
}
185
187
@@ -1096,7 +1098,7 @@ impl<'a> Resolver<'a> {
1096
1098
// while still taking everything else from the source code.
1097
1099
// If we already loaded this builtin macro, give a better error message than 'no such builtin macro'.
1098
1100
match mem:: replace ( builtin_macro, BuiltinMacroState :: AlreadySeen ( item. span ) ) {
1099
- BuiltinMacroState :: NotYetSeen ( ext) => result. kind = ext. kind ,
1101
+ BuiltinMacroState :: NotYetSeen ( ext) => result. kind = ext,
1100
1102
BuiltinMacroState :: AlreadySeen ( span) => {
1101
1103
struct_span_err ! (
1102
1104
self . session,
0 commit comments