From: Götz Lindenmaier Date: Fri, 26 Apr 2002 16:11:26 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=71ab2a018e4c49ebd5795765ab4116b024e20620;p=libfirm *** empty log message *** [r390] --- diff --git a/Changes b/Changes index 8b903c5bf..328334e60 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,11 @@ + 25.4.2002 Goetz + Added several constructors to tv. + Changed xgprintf so that full precision of double tvs is printed. + Fixed bug in irouts.c. + + 22.4.2002 Goetz + Added debug support, renamed stuff in ir/debug. + Optimizations still loose debug information. 19.3.2002 Goetz Added flag "peculiarity" to entity.h, type.h. diff --git a/ir/ir/irmode.h b/ir/ir/irmode.h index a01533920..de12fac6c 100644 --- a/ir/ir/irmode.h +++ b/ir/ir/irmode.h @@ -43,7 +43,7 @@ typedef enum { /* irm is short for `ir mode' */ irm_BB, irm_X, // basic block, execution irm_F, irm_D, irm_E, // float, double, extended irm_B, irm_Bu, irm_H, irm_Hu, irm_I, irm_Iu, irm_L, irm_Lu, - // byte, short, int, long + // byte(8), short(16), int(32), long(64) irm_C, // character irm_P, // pointer irm_b, // internal boolean diff --git a/ir/st/Makefile.in b/ir/st/Makefile.in index 49d5a9fd2..e6727351f 100644 --- a/ir/st/Makefile.in +++ b/ir/st/Makefile.in @@ -10,11 +10,11 @@ srcdir = @srcdir@ topdir = ../.. subdir := ir/st -INSTALL_HEADERS = st.h +INSTALL_HEADERS = st.h exc.h SOURCES = $(INSTALL_HEADERS) -SOURCES += Makefile.in st.c st.h exc.c exc.h +SOURCES += Makefile.in st.c st.h exc.c include $(topdir)/MakeRules diff --git a/testprograms/Makefile.in b/testprograms/Makefile.in index 2e19e8772..96c452eb7 100644 --- a/testprograms/Makefile.in +++ b/testprograms/Makefile.in @@ -28,7 +28,7 @@ include $(topdir)/MakeRules CPPFLAGS += -I$(top_srcdir)/ir/adt -I$(top_srcdir)/ir/common -I$(top_srcdir)/ir/debug \ -I$(top_srcdir)/ir/ident -I$(top_srcdir)/ir/ir -I$(top_srcdir)/ir/tr \ - -I$(top_srcdir)/ir/tv + -I$(top_srcdir)/ir/tv -I$(top_srcdir)/ir/st -I$(top_srcdir)/ir/ana LDFLAGS += -L$(topdir) LDLIBS += -lfirm -lgmp -liberty