about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorAndrea Mattavelli <andreamattavelli@users.noreply.github.com>2017-06-08 21:23:37 +0100
committerGitHub <noreply@github.com>2017-06-08 21:23:37 +0100
commit5289c6135b7baef600257c614ef52f9af10a22e4 (patch)
tree1c20bf390a284fb7be06107d30005326111b3486 /include
parent8fbbdf6b842365b8b5d63c5fe46f9b53b0886f1c (diff)
parent3a1cc630a10eabd9c0ee5fe4cc61e7df9b5ee37b (diff)
downloadklee-5289c6135b7baef600257c614ef52f9af10a22e4.tar.gz
Merge pull request #675 from ccadar/varargs
Fixed typos in comments related to vararg support.
Diffstat (limited to 'include')
-rw-r--r--include/klee/ExecutionState.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/klee/ExecutionState.h b/include/klee/ExecutionState.h
index 32f840f6..78ebddac 100644
--- a/include/klee/ExecutionState.h
+++ b/include/klee/ExecutionState.h
@@ -51,7 +51,7 @@ struct StackFrame {
 
   // For vararg functions: arguments not passed via parameter are
   // stored (packed tightly) in a local (alloca) memory object. This
-  // is setup to match the way the front-end generates vaarg code (it
+  // is set up to match the way the front-end generates vaarg code (it
   // does not pass vaarg through as expected). VACopy is lowered inside
   // of intrinsic lowering.
   MemoryObject *varargs;