diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-06-26 16:18:37 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-06-26 16:18:37 -0700 |
| commit | 697f1e38d646bb6c7bab054c8c8c5b469c566ef6 (patch) | |
| tree | 614999c97dd8e6f648f8a3fd41a8de3304baffa9 /src/rustc/rustc.rc | |
| parent | 999b567e2af0a454bc862bc2e5b1bc16dae78f44 (diff) | |
| download | rust-697f1e38d646bb6c7bab054c8c8c5b469c566ef6.tar.gz rust-697f1e38d646bb6c7bab054c8c8c5b469c566ef6.zip | |
Change 'native' and 'crust' to 'extern'.
This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI.
Diffstat (limited to 'src/rustc/rustc.rc')
| -rw-r--r-- | src/rustc/rustc.rc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rustc/rustc.rc b/src/rustc/rustc.rc index 7d112ae7146..5af48fa8e47 100644 --- a/src/rustc/rustc.rc +++ b/src/rustc/rustc.rc @@ -43,7 +43,7 @@ mod middle { mod closure; mod tvec; mod impl; - mod native; + mod foreign; mod reflect; mod shape; mod debuginfo; |
