diff options
author | Veres Lajos <vlajos@gmail.com> | 2015-09-08 22:45:14 +0100 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2015-09-11 10:45:43 +0300 |
commit | 67cc32ebfd8c0ee3fcdb26780a8991baf5eb1d45 (patch) | |
tree | 86bc6be6682ce785667cef755e1b630e317ad696 /target-cris/translate.c | |
parent | 33b23b4b5e15923acaf315b01a535c15b239483b (diff) | |
download | qemu-67cc32ebfd8c0ee3fcdb26780a8991baf5eb1d45.tar.gz qemu-67cc32ebfd8c0ee3fcdb26780a8991baf5eb1d45.tar.bz2 qemu-67cc32ebfd8c0ee3fcdb26780a8991baf5eb1d45.zip |
typofixes - v4
Signed-off-by: Veres Lajos <vlajos@gmail.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'target-cris/translate.c')
-rw-r--r-- | target-cris/translate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-cris/translate.c b/target-cris/translate.c index f21373b4bb..aa90d7173f 100644 --- a/target-cris/translate.c +++ b/target-cris/translate.c @@ -102,9 +102,9 @@ typedef struct DisasContext { int cc_size_uptodate; /* -1 invalid or last written value. */ - int cc_x_uptodate; /* 1 - ccs, 2 - known | X_FLAG. 0 not uptodate. */ - int flags_uptodate; /* Wether or not $ccs is uptodate. */ - int flagx_known; /* Wether or not flags_x has the x flag known at + int cc_x_uptodate; /* 1 - ccs, 2 - known | X_FLAG. 0 not up-to-date. */ + int flags_uptodate; /* Whether or not $ccs is up-to-date. */ + int flagx_known; /* Whether or not flags_x has the x flag known at translation time. */ int flags_x; |