Skip to content

Commit 114ce58

Browse files
197gMark-Simulacrum
authored andcommitted
Consistent naming scheme, remove unused feature
1 parent 3543f00 commit 114ce58

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

collector/benchmarks/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ programs.
7272
caused [poor performance](https://github.com/rust-lang/rust/issues/32278) in
7373
the past.
7474
- **ctfe-stress-2**: A stress test for compile-time function evaluation.
75-
- **ctfe-uninit-stress**: A stress test for representation of values with
75+
- **ctfe-stress-uninit**: A stress test for representation of values with
7676
uninitialized bytes in compile-time function evaluation.
7777
- **deeply-nested**: A small program that caused [exponential
7878
behavior](https://github.com/rust-lang/rust/issues/38528) in the past.

collector/benchmarks/ctfe-uninit-stress/Cargo.lock renamed to collector/benchmarks/ctfe-stress-uninit/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[package]
2-
name = "ctfe-uninit-stress"
2+
name = "ctfe-stress-uninit"
33
version = "0.1.0"
44
authors = ["Andreas Molzer <[email protected]>"]

collector/benchmarks/ctfe-uninit-stress/src/lib.rs renamed to collector/benchmarks/ctfe-stress-uninit/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(const_fn, const_let)]
2-
31
// Try CTFE that operate on values that contain largely uninitialized memory, not requiring any
42
// particular representation in MIR.
53

0 commit comments

Comments
 (0)