summaryrefslogtreecommitdiff
path: root/src/passes/OptimizeAddedConstants.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/passes/OptimizeAddedConstants.cpp')
-rw-r--r--src/passes/OptimizeAddedConstants.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/passes/OptimizeAddedConstants.cpp b/src/passes/OptimizeAddedConstants.cpp
index aadff5112..1bf7c7e9e 100644
--- a/src/passes/OptimizeAddedConstants.cpp
+++ b/src/passes/OptimizeAddedConstants.cpp
@@ -189,9 +189,9 @@ private:
// y = y + 1
// load(x)
//
- // This example should not be optimized into
+ // This example should *not* be optimized into
//
- // load(x, offset=10)
+ // load(y, offset=10)
//
// If the other side is a get, we may be able to prove that we can just
// use that same local, if both it and the pointer are in SSA form. In