Skip to content

Commit 963305b

Browse files
Forbid the use of #[target_feature] on start
1 parent db26693 commit 963305b

File tree

5 files changed

+39
-0
lines changed

5 files changed

+39
-0
lines changed

compiler/rustc_hir_analysis/messages.ftl

+3
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ hir_analysis_target_feature_on_main = `main` function is not allowed to have `#[
133133
hir_analysis_start_not_track_caller = `start` is not allowed to be `#[track_caller]`
134134
.label = `start` is not allowed to be `#[track_caller]`
135135
136+
hir_analysis_start_not_target_feature = `start` is not allowed to have `#[target_feature]`
137+
.label = `start` is not allowed to have `#[target_feature]`
138+
136139
hir_analysis_start_not_async = `start` is not allowed to be `async`
137140
.label = `start` is not allowed to be `async`
138141

compiler/rustc_hir_analysis/src/errors.rs

+9
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,15 @@ pub(crate) struct StartTrackCaller {
344344
pub start: Span,
345345
}
346346

347+
#[derive(Diagnostic)]
348+
#[diag(hir_analysis_start_not_target_feature)]
349+
pub(crate) struct StartTargetFeature {
350+
#[primary_span]
351+
pub span: Span,
352+
#[label]
353+
pub start: Span,
354+
}
355+
347356
#[derive(Diagnostic)]
348357
#[diag(hir_analysis_start_not_async, code = "E0752")]
349358
pub(crate) struct StartAsync {

compiler/rustc_hir_analysis/src/lib.rs

+7
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,13 @@ fn check_start_fn_ty(tcx: TyCtxt<'_>, start_def_id: DefId) {
378378
});
379379
error = true;
380380
}
381+
if attr.has_name(sym::target_feature) {
382+
tcx.sess.emit_err(errors::StartTargetFeature {
383+
span: attr.span,
384+
start: start_span,
385+
});
386+
error = true;
387+
}
381388
}
382389

383390
if error {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// only-x86_64
2+
3+
#![feature(start)]
4+
#![feature(target_feature_11)]
5+
6+
#[start]
7+
#[target_feature(enable = "avx2")]
8+
//~^ ERROR `start` is not allowed to have `#[target_feature]`
9+
fn start(_argc: isize, _argv: *const *const u8) -> isize { 0 }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error: `start` is not allowed to have `#[target_feature]`
2+
--> $DIR/issue-108645-target-feature-on-start.rs:7:1
3+
|
4+
LL | #[target_feature(enable = "avx2")]
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6+
LL |
7+
LL | fn start(_argc: isize, _argv: *const *const u8) -> isize { 0 }
8+
| -------------------------------------------------------- `start` is not allowed to have `#[target_feature]`
9+
10+
error: aborting due to previous error
11+

0 commit comments

Comments
 (0)