We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab50da9 commit ea69f48Copy full SHA for ea69f48
src/comp/syntax/print/pprust.rs
@@ -404,6 +404,7 @@ fn print_item(&ps s, &@ast::item item) {
404
case (ast::item_native_mod(?nmod)) {
405
head(s, "native");
406
alt (nmod.abi) {
407
+ case (ast::native_abi_llvm) { word_nbsp(s, "\"llvm\""); }
408
case (ast::native_abi_rust) { word_nbsp(s, "\"rust\""); }
409
case (ast::native_abi_cdecl) { word_nbsp(s, "\"cdecl\""); }
410
case (ast::native_abi_rust_intrinsic) {
0 commit comments