]> git.lizzy.rs Git - rust.git/commitdiff
link_ordinal is available for foreign static
authoryukang <moorekang@gmail.com>
Thu, 4 Aug 2022 01:28:59 +0000 (09:28 +0800)
committeryukang <moorekang@gmail.com>
Thu, 4 Aug 2022 01:28:59 +0000 (09:28 +0800)
compiler/rustc_error_messages/locales/en-US/passes.ftl
compiler/rustc_passes/src/check_attr.rs
src/test/ui/rfc-2627-raw-dylib/link-ordinal-not-foreign-fn.rs
src/test/ui/rfc-2627-raw-dylib/link-ordinal-not-foreign-fn.stderr

index 2802a0d2c6439071145bc90e3ce437dadeeb829b..d8056c77f0f4233cd1f01a689723b65cfc23a902 100644 (file)
@@ -263,5 +263,5 @@ passes-rustc-lint-opt-ty = `#[rustc_lint_opt_ty]` should be applied to a struct
 passes-rustc-lint-opt-deny-field-access = `#[rustc_lint_opt_deny_field_access]` should be applied to a field
     .label = not a field
 
-passes-link-ordinal = attribute should be applied to a foreign function
-    .label = not a foreign function
\ No newline at end of file
+passes-link-ordinal = attribute should be applied to a foreign function or static
+    .label = not a foreign function or static
\ No newline at end of file
index 9fee28a403578881e50b9732fca3976ea05631e7..8a8d88d7bf4adc65b1331a912413676d752be00f 100644 (file)
@@ -1864,7 +1864,7 @@ fn check_stability_promotable(&self, attr: &Attribute, _span: Span, target: Targ
 
     fn check_link_ordinal(&self, attr: &Attribute, _span: Span, target: Target) -> bool {
         match target {
-            Target::ForeignFn => true,
+            Target::ForeignFn | Target::ForeignStatic => true,
             _ => {
                 self.tcx.sess.emit_err(errors::LinkOrdinal { attr_span: attr.span });
                 false
index c86756be4f640441e5a99cda516b9b20e54ea69f..5d273d52a928e41eb3a720f83d7611c764c84028 100644 (file)
@@ -2,17 +2,24 @@
 //~^ WARN the feature `raw_dylib` is incomplete
 
 #[link_ordinal(123)]
-//~^ ERROR attribute should be applied to a foreign function
+//~^ ERROR attribute should be applied to a foreign function or static
 struct Foo {}
 
 #[link_ordinal(123)]
-//~^ ERROR attribute should be applied to a foreign function
+//~^ ERROR attribute should be applied to a foreign function or static
 fn test() {}
 
+#[link_ordinal(42)]
+//~^ ERROR attribute should be applied to a foreign function or static
+static mut imported_val: i32 = 123;
+
 #[link(name = "exporter", kind = "raw-dylib")]
 extern {
     #[link_ordinal(13)]
     fn imported_function();
+
+    #[link_ordinal(42)]
+    static mut imported_variable: i32;
 }
 
 fn main() {}
index c3c399d5759818b7f36f7efadd10703bef2cd60a..8fa2f16f44df9a4362d31ba95e0fa5aea928fc7b 100644 (file)
@@ -7,17 +7,23 @@ LL | #![feature(raw_dylib)]
    = note: `#[warn(incomplete_features)]` on by default
    = note: see issue #58713 <https://github.com/rust-lang/rust/issues/58713> for more information
 
-error: attribute should be applied to a foreign function
+error: attribute should be applied to a foreign function or static
   --> $DIR/link-ordinal-not-foreign-fn.rs:4:1
    |
 LL | #[link_ordinal(123)]
    | ^^^^^^^^^^^^^^^^^^^^
 
-error: attribute should be applied to a foreign function
+error: attribute should be applied to a foreign function or static
   --> $DIR/link-ordinal-not-foreign-fn.rs:8:1
    |
 LL | #[link_ordinal(123)]
    | ^^^^^^^^^^^^^^^^^^^^
 
-error: aborting due to 2 previous errors; 1 warning emitted
+error: attribute should be applied to a foreign function or static
+  --> $DIR/link-ordinal-not-foreign-fn.rs:12:1
+   |
+LL | #[link_ordinal(42)]
+   | ^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 3 previous errors; 1 warning emitted