From: Götz Lindenmaier Date: Thu, 6 Jul 2000 14:24:01 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=925f67568de1f99930a2daf5de59f2e34cd62307;p=libfirm *** empty log message *** [r33] --- diff --git a/ir/Makefile b/ir/Makefile index 5d54385cf..22d486ab0 100644 --- a/ir/Makefile +++ b/ir/Makefile @@ -12,7 +12,7 @@ # Further it updates the TAGS file with each recompilation SUBDIRS = adt common debug ident ir tr tv -INCLUDES = -I../adt -I../common -I../debug -I../ident -I../../include \ +INCLUDES = -I../adt -I../common -I../debug -I../ident -I../include \ -I../ir -I../tr -I../tv OFILES = diff --git a/ir/ir/Makefile b/ir/ir/Makefile index de9f854e9..7a823e268 100644 --- a/ir/ir/Makefile +++ b/ir/ir/Makefile @@ -15,7 +15,7 @@ DEPENDFLAGS = -M LIBPATH = LIBS = X_LIBS = -INCLUDES = -I../adt -I../common -I../debug -I../ident -I../../include \ +INCLUDES = -I../adt -I../common -I../debug -I../ident -I../include \ -I../ir -I../tr -I../tv X_INCLUDES = diff --git a/ir/tr/Makefile b/ir/tr/Makefile index e0f72d8e8..aaf3ae2d2 100644 --- a/ir/tr/Makefile +++ b/ir/tr/Makefile @@ -15,7 +15,7 @@ DEPENDFLAGS = -M LIBPATH = LIBS = X_LIBS = -INCLUDES = -I../adt -I../common -I../debug -I../ident -I../../include \ +INCLUDES = -I../adt -I../common -I../debug -I../ident -I../include \ -I../ir -I../tr -I../tv X_INCLUDES = diff --git a/ir/tv/Makefile b/ir/tv/Makefile index f9170da62..4518b37d7 100644 --- a/ir/tv/Makefile +++ b/ir/tv/Makefile @@ -14,7 +14,7 @@ DEPENDFLAGS = -M LIBPATH = LIBS = X_LIBS = -INCLUDES = -I../adt -I../common -I../debug -I../ident -I../../include \ +INCLUDES = -I../adt -I../common -I../debug -I../ident -I../include \ -I../ir -I../tr -I../tv X_INCLUDES = diff --git a/testprograms/dead_block_example.c b/testprograms/dead_block_example.c index e6a5786ce..ad6c8ccc2 100644 --- a/testprograms/dead_block_example.c +++ b/testprograms/dead_block_example.c @@ -46,12 +46,11 @@ int main(int argc, char **argv) { ir_graph *irg; /* this variable contains the irgraph */ type_class *owner; /* the class in which this method is defined */ - type_method *proc_main; /* typeinformation for the method main */ + type_method *proc_main; /* type information for the method main */ entity *ent; /* represents this method as entity of owner */ ir_node *c1, *c2, *cond, *f, *t, *endBlock, *Block1, *jmp, *Block2, *deadBlock, *x; - /* init library */ init_firm ();