Skip to content

Commit ca53d2e

Browse files
committed
Change producer string to have the rustc producer string as prefix
This fixes the comment-section run-make test
1 parent 5a9b81a commit ca53d2e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

scripts/test_rustc_tests.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ rm tests/ui/parser/unclosed-delimiter-in-dep.rs # submodule contains //~ERROR
2727
# missing features
2828
# ================
2929

30-
rm -r tests/run-make/comment-section # cg_clif doesn't yet write the .comment section
31-
3230
# requires stack unwinding
3331
# FIXME add needs-unwind to these tests
3432
rm -r tests/run-make/libtest-junit

src/debuginfo/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use crate::prelude::*;
2020

2121
pub(crate) fn producer() -> String {
2222
format!(
23-
"cg_clif (rustc {}, cranelift {})",
23+
"rustc version {} with cranelift {}",
2424
rustc_interface::util::rustc_version_str().unwrap_or("unknown version"),
2525
cranelift_codegen::VERSION,
2626
)

0 commit comments

Comments
 (0)