Skip to content

Commit

Permalink
Creating temps for each arg.
Browse files Browse the repository at this point in the history
  • Loading branch information
vineethk authored and rahxephon89 committed Dec 11, 2024
1 parent e2b02e2 commit 6a4f7a3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions third_party/move/move-compiler-v2/src/experiments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,14 @@ pub static EXPERIMENTS: Lazy<BTreeMap<String, Experiment>> = Lazy::new(|| {
.to_string(),
default: Given(true),
},
Experiment {
name: Experiment::RETAIN_TEMPS_FOR_ARGS.to_string(),
description:
"Create temps for each argument of a function call during stackless bytecode \
generation and retain them until file format bytecode generation"
.to_string(),
default: Inherited(Experiment::OPTIMIZE_WAITING_FOR_COMPARE_TESTS.to_string()),
},
];
experiments
.into_iter()
Expand Down

0 comments on commit 6a4f7a3

Please sign in to comment.