about summary refs log tree commit diff stats
path: root/037global_variables.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-14 01:42:21 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-14 01:52:54 -0800
commit5c368edcb22a4b7c4df7aada998b42ea4833e795 (patch)
tree82360d9526ad85b219e0beaba41dee15986e3c14 /037global_variables.cc
parent564ced70fde12a3be98e294482db7d44bc3ff755 (diff)
downloadmu-5c368edcb22a4b7c4df7aada998b42ea4833e795.tar.gz
5892
Diffstat (limited to '037global_variables.cc')
-rw-r--r--037global_variables.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/037global_variables.cc b/037global_variables.cc
index c22ac3d3..2cd67421 100644
--- a/037global_variables.cc
+++ b/037global_variables.cc
@@ -20,7 +20,7 @@ void test_global_variable() {
   );
 }
 
-:(before "End Level-2 Transforms")
+:(before "End Transforms")
 Transform.push_back(rewrite_global_variables);
 :(code)
 void rewrite_global_variables(program& p) {
@@ -157,7 +157,7 @@ bool valid_use_of_global_variable(const word& curr) {
 //:: a more complex sanity check for how we use global variables
 //: requires first saving some data early before we pack operands
 
-:(after "Begin Level-2 Transforms")
+:(after "Begin Transforms")
 Transform.push_back(correlate_disp32_with_mod);
 :(code)
 void correlate_disp32_with_mod(program& p) {