Skip to content

Commit 67ed489

Browse files
committed
Auto merge of #44966 - zackmdavis:no_mangle_no_snake, r=aturon
make non_snake_case lint allow extern no-mangle functions Resolves #31924. r? @sfackler
2 parents bdcb7fb + b989101 commit 67ed489

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

src/librustc_lint/bad_style.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use rustc::ty;
1313
use lint::{LateContext, LintContext, LintArray};
1414
use lint::{LintPass, LateLintPass};
1515

16+
use syntax::abi::Abi;
1617
use syntax::ast;
1718
use syntax::attr;
1819
use syntax_pos::Span;
@@ -250,7 +251,11 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NonSnakeCase {
250251
_ => (),
251252
}
252253
}
253-
FnKind::ItemFn(name, ..) => {
254+
FnKind::ItemFn(name, _, _, _, abi, _, attrs) => {
255+
// Skip foreign-ABI #[no_mangle] functions (Issue #31924)
256+
if abi != Abi::Rust && attr::find_by_name(attrs, "no_mangle").is_some() {
257+
return;
258+
}
254259
self.check_snake_case(cx, "function", &name.as_str(), Some(span))
255260
}
256261
FnKind::Closure(_) => (),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![feature(rustc_attrs)]
12+
#![deny(non_snake_case)]
13+
14+
#[no_mangle]
15+
pub extern "C" fn SparklingGenerationForeignFunctionInterface() {}
16+
17+
#[rustc_error]
18+
fn main() {} //~ ERROR compilation successful

0 commit comments

Comments
 (0)