diff options
| author | Tomasz Miąsko <tomasz.miasko@gmail.com> | 2023-01-06 00:00:00 +0000 |
|---|---|---|
| committer | Tomasz Miąsko <tomasz.miasko@gmail.com> | 2023-01-10 10:14:59 +0100 |
| commit | 72f8d6a6597e4b780e518e606ec39595ee0eda85 (patch) | |
| tree | 1c2faa641c630fffaa55d0b12601bcd89a81cc95 /compiler/rustc_interface/src | |
| parent | 78075e1e26176f86cbafb0bf24f86dba174351ed (diff) | |
| download | rust-72f8d6a6597e4b780e518e606ec39595ee0eda85.tar.gz rust-72f8d6a6597e4b780e518e606ec39595ee0eda85.zip | |
Change type of box_noalias to bool
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs index 6c26b47eaa4..a3b9891ee64 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -715,7 +715,7 @@ fn test_unstable_options_tracking_hash() { tracked!(asm_comments, true); tracked!(assume_incomplete_release, true); tracked!(binary_dep_depinfo, true); - tracked!(box_noalias, Some(false)); + tracked!(box_noalias, false); tracked!( branch_protection, Some(BranchProtection { |
