]> git.lizzy.rs Git - rust.git/commitdiff
Don't warn about dead foreign items if the 'allow(dead_code)' attribute is present
authorDylan McKay <dylanmckay34@gmail.com>
Tue, 3 Jan 2017 01:54:15 +0000 (14:54 +1300)
committerDylan McKay <dylanmckay34@gmail.com>
Tue, 3 Jan 2017 01:54:15 +0000 (14:54 +1300)
This functionality was missing, and should have existed previously.

Fixes #38780

src/librustc/middle/dead.rs
src/test/run-pass/test-allow-dead-extern-static-no-warning.rs [new file with mode: 0644]

index 76adee4e00c15684ec411deddddf5daa2232cb45..00e21410c707757d5ab28930b017ecec0aea65b8 100644 (file)
@@ -445,6 +445,11 @@ fn should_warn_about_variant(&mut self, variant: &hir::Variant_) -> bool {
             && !has_allow_dead_code_or_lang_attr(&variant.attrs)
     }
 
+    fn should_warn_about_foreign_item(&mut self, fi: &hir::ForeignItem) -> bool {
+        !self.symbol_is_live(fi.id, None)
+            && !has_allow_dead_code_or_lang_attr(&fi.attrs)
+    }
+
     // id := node id of an item's definition.
     // ctor_id := `Some` if the item is a struct_ctor (tuple struct),
     //            `None` otherwise.
@@ -534,7 +539,7 @@ fn visit_variant(&mut self,
     }
 
     fn visit_foreign_item(&mut self, fi: &'tcx hir::ForeignItem) {
-        if !self.symbol_is_live(fi.id, None) {
+        if self.should_warn_about_foreign_item(fi) {
             self.warn_dead_code(fi.id, fi.span, fi.name, fi.node.descriptive_variant());
         }
         intravisit::walk_foreign_item(self, fi);
diff --git a/src/test/run-pass/test-allow-dead-extern-static-no-warning.rs b/src/test/run-pass/test-allow-dead-extern-static-no-warning.rs
new file mode 100644 (file)
index 0000000..8df32b5
--- /dev/null
@@ -0,0 +1,20 @@
+// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// compile-flags: --test
+
+#![deny(dead_code)]
+
+extern "C" {
+    #[allow(dead_code)]
+    static Qt: u64;
+}
+
+fn main() {}