about summary refs log tree commit diff
path: root/src/comp/syntax
diff options
context:
space:
mode:
Diffstat (limited to 'src/comp/syntax')
-rw-r--r--src/comp/syntax/print/pprust.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/syntax/print/pprust.rs b/src/comp/syntax/print/pprust.rs
index 021c5b26b3c..0543b01128e 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) {