aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linearize.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2004-11-08 14:17:13 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:04:08 -0700
commit03bfc54e26e03087fde90fa55738888190c2114b (patch)
treeb7f6cfcfaa81e2aa803a07bcc151de47a8e9f69b /linearize.h
parent5d4363ca7e9935882ca4477fe9d5222150efc0c3 (diff)
downloadsparse-03bfc54e26e03087fde90fa55738888190c2114b.tar.gz
Each pseudo has its "def" pointer, they now also have "use" pointers.
Well, at least part of the use pointers. I probably missed some uses.
Diffstat (limited to 'linearize.h')
-rw-r--r--linearize.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/linearize.h b/linearize.h
index e31fef63..6151eb99 100644
--- a/linearize.h
+++ b/linearize.h
@@ -19,6 +19,7 @@ struct pseudo {
int nr;
unsigned int usage:24,
type:8;
+ struct instruction_list *users;
union {
struct symbol *sym;
struct instruction *def;