Skip to content

Commit ea69f48

Browse files
jrudermanbrson
authored andcommitted
Add a missing case so nbody.rs can pp
1 parent ab50da9 commit ea69f48

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/comp/syntax/print/pprust.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,7 @@ fn print_item(&ps s, &@ast::item item) {
404404
case (ast::item_native_mod(?nmod)) {
405405
head(s, "native");
406406
alt (nmod.abi) {
407+
case (ast::native_abi_llvm) { word_nbsp(s, "\"llvm\""); }
407408
case (ast::native_abi_rust) { word_nbsp(s, "\"rust\""); }
408409
case (ast::native_abi_cdecl) { word_nbsp(s, "\"cdecl\""); }
409410
case (ast::native_abi_rust_intrinsic) {

0 commit comments

Comments
 (0)