diff options
| author | Patrick Walton <[email protected]> | 2011-05-03 15:55:01 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-05-03 15:55:01 -0700 |
| commit | 6871c245a67fab222eccc2a21dcb620d11d3b0d0 (patch) | |
| tree | 69fbc94f6f4d696f5a7eb69ba65028da09b15d02 /src/comp/pretty | |
| parent | rustc: Refactor metadata.Encode.* to not require a type abbreviation table if... (diff) | |
| download | rust-6871c245a67fab222eccc2a21dcb620d11d3b0d0.tar.xz rust-6871c245a67fab222eccc2a21dcb620d11d3b0d0.zip | |
Rename the "llvm" API to "llvm-intrinsic"
Diffstat (limited to 'src/comp/pretty')
| -rw-r--r-- | src/comp/pretty/pprust.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/pretty/pprust.rs b/src/comp/pretty/pprust.rs index 7ef91ce8..1f84e18a 100644 --- a/src/comp/pretty/pprust.rs +++ b/src/comp/pretty/pprust.rs @@ -229,6 +229,7 @@ fn print_item(ps s, @ast.item item) { wrd1(s, "native"); alt (nmod.abi) { case (ast.native_abi_rust) {wrd1(s, "\"rust\"");} + case (ast.native_abi_llvm) {wrd1(s, "\"llvm-intrinsic\"");} case (ast.native_abi_cdecl) {wrd1(s, "\"cdecl\"");} } wrd1(s, "mod"); |