about summary refs log tree commit diff homepage
path: root/lib/Expr
diff options
context:
space:
mode:
authorTimotej Kapus <tk1713@ic.ac.uk>2019-03-18 13:39:49 +0000
committerCristian Cadar <c.cadar@imperial.ac.uk>2019-03-19 10:01:55 +0000
commit9c4211b826857b154ea5b6636d088759e9bf4d37 (patch)
treefedf2a50b9916ded240db81e763f840271dd2bbb /lib/Expr
parent28da6d9a03a7e2bf8ab1371267b049c73938c4e5 (diff)
downloadklee-9c4211b826857b154ea5b6636d088759e9bf4d37.tar.gz
Add Read consistency test case, spelling
Diffstat (limited to 'lib/Expr')
-rw-r--r--lib/Expr/Expr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Expr/Expr.cpp b/lib/Expr/Expr.cpp
index 54f68f21..060595d6 100644
--- a/lib/Expr/Expr.cpp
+++ b/lib/Expr/Expr.cpp
@@ -533,9 +533,9 @@ unsigned Array::computeHash() {
 ref<Expr> ReadExpr::create(const UpdateList &ul, ref<Expr> index) {
   // rollback update nodes if possible
 
-  // Iterate throught the update list from the most recent to the
-  // least reasent to find a potential written value for a concrete index;
-  // stop, if an update with symbolic has been found as we don't know which
+  // Iterate through the update list from the most recent to the
+  // least recent to find a potential written value for a concrete index;
+  // stop if an update with symbolic has been found as we don't know which
   // array element has been updated
   const UpdateNode *un = ul.head;
   bool updateListHasSymbolicWrites = false;