aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2007-03-09 15:22:17 -0800
committerJosh Triplett <josh@freedesktop.org>2007-03-09 15:32:55 -0800
commitcef10da343e842f6b55f5a26d55aaec5b55bd184 (patch)
tree2a55ea9107c0cd8034a55684961a9bf455fe31a4 /symbol.h
parentIntroduce keyword driven attribute parsing (diff)
downloadsparse-cef10da343e842f6b55f5a26d55aaec5b55bd184.tar.gz
sparse-cef10da343e842f6b55f5a26d55aaec5b55bd184.tar.bz2
sparse-cef10da343e842f6b55f5a26d55aaec5b55bd184.zip
Fix typos in comments
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'symbol.h')
-rw-r--r--symbol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/symbol.h b/symbol.h
index 00c1a3d..d1b2868 100644
--- a/symbol.h
+++ b/symbol.h
@@ -113,7 +113,7 @@ struct symbol {
struct position pos; /* Where this symbol was declared */
struct ident *ident; /* What identifier this symbol is associated with */
struct symbol *next_id; /* Next semantic symbol that shares this identifier */
- struct symbol **id_list; /* Backpointer to symbol list head */
+ struct symbol **id_list; /* Back pointer to symbol list head */
struct symbol *replace; /* What is this symbol shadowed by in copy-expression */
struct scope *scope;
struct symbol *same_symbol;
@@ -153,7 +153,7 @@ struct symbol {
};
union /* backend */ {
struct basic_block *bb_target; /* label */
- void *aux; /* Auxiliary info, eg. backend information */
+ void *aux; /* Auxiliary info, e.g. backend information */
struct { /* sparse ctags */
char kind;
unsigned char visited:1;