about summary refs log tree commit diff
path: root/src/rustllvm/RustWrapper.cpp
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-04-30 14:07:52 +0200
committerGitHub <noreply@github.com>2020-04-30 14:07:52 +0200
commit4e6772b52bc9832bb47bedba61abdcfb4ba0128e (patch)
tree490b2013b130114b20396cefc0f1f89057e7c556 /src/rustllvm/RustWrapper.cpp
parentbf459752d41a93eb6df0e9513de4ef807883a80c (diff)
parent6c700dc11c72993d5fa5905355a69c6524e960d3 (diff)
downloadrust-4e6772b52bc9832bb47bedba61abdcfb4ba0128e.tar.gz
rust-4e6772b52bc9832bb47bedba61abdcfb4ba0128e.zip
Rollup merge of #71205 - NeoRaider:check_attr, r=jonas-schievink
rustc: fix check_attr() for methods, closures and foreign functions

This fixes an issue that previously turned up for methods in https://github.com/rust-lang/rust/pull/69274, but also exists for closures and foreign function: `check_attr` does not call `codegen_fn_attrs()` for these types when it should, meaning that incorrectly used function attributes are not diagnosed without codegen.

The issue affects our UI tests, as they run with `--emit=metadata` by default, but as it turns out, this is not the only case: Function attributes are not checked on any dead code without this fix!

This makes the fix a **breaking change**. The following very silly Rust programs compiles fine on stable Rust when it should not, which is fixed by this PR.
```rust
fn main() {
    #[target_feature(enable = "sse2")]
    || {};
}
```

I assume any real-world program which may trigger this issue would at least emit a dead code warning, but of course that is no guarantee that such code does not exist...

Fixes #70307
Diffstat (limited to 'src/rustllvm/RustWrapper.cpp')
0 files changed, 0 insertions, 0 deletions