summary refs log tree commit diff
path: root/src/rustc/rustc.rc
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-06-26 16:18:37 -0700
committerGraydon Hoare <graydon@mozilla.com>2012-06-26 16:18:37 -0700
commit697f1e38d646bb6c7bab054c8c8c5b469c566ef6 (patch)
tree614999c97dd8e6f648f8a3fd41a8de3304baffa9 /src/rustc/rustc.rc
parent999b567e2af0a454bc862bc2e5b1bc16dae78f44 (diff)
downloadrust-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.rc2
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;