File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 3
3
/// The "main macro" used for defining intrinsics.
4
4
///
5
5
/// The compiler-builtins library is super platform-specific with tons of crazy
6
- /// little tweaks for various platforms. As a result it *could* involve a lot fo
7
- /// #[cfg] and macro soup, but the intention is that this macro alleviates a lof
6
+ /// little tweaks for various platforms. As a result it *could* involve a lot of
7
+ /// #[cfg] and macro soup, but the intention is that this macro alleviates a lot
8
8
/// of that complexity. Ideally this macro has all the weird ABI things
9
9
/// platforms need and elsewhere in this library it just looks like normal Rust
10
10
/// code.
@@ -220,10 +220,6 @@ macro_rules! intrinsics {
220
220
pub extern "aapcs" fn $alias( $( $argname: $ty) ,* ) -> $ret {
221
221
super :: $name( $( $argname) ,* )
222
222
}
223
-
224
- pub extern $abi fn $name( $( $argname: $ty) ,* ) -> $ret {
225
- super :: $name( $( $argname) ,* )
226
- }
227
223
}
228
224
}
229
225
You can’t perform that action at this time.
0 commit comments