From ea69f48eacec7052c31e6443dbe6ac9ecf6de3a9 Mon Sep 17 00:00:00 2001 From: Jesse Ruderman Date: Sun, 10 Jul 2011 16:09:12 -0700 Subject: [PATCH] Add a missing case so nbody.rs can pp --- src/comp/syntax/print/pprust.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/comp/syntax/print/pprust.rs b/src/comp/syntax/print/pprust.rs index 021c5b26b3c1..0543b01128eb 100644 --- a/src/comp/syntax/print/pprust.rs +++ b/src/comp/syntax/print/pprust.rs @@ -404,6 +404,7 @@ fn print_item(&ps s, &@ast::item item) { case (ast::item_native_mod(?nmod)) { head(s, "native"); alt (nmod.abi) { + case (ast::native_abi_llvm) { word_nbsp(s, "\"llvm\""); } case (ast::native_abi_rust) { word_nbsp(s, "\"rust\""); } case (ast::native_abi_cdecl) { word_nbsp(s, "\"cdecl\""); } case (ast::native_abi_rust_intrinsic) {