Re: [llvm-commits] CVS: llvm/lib/Target/MSIL/MSILWriter.cpp

2007-05-06 Thread Anton Korobeynikov
> add this back Oops. Sorry, this was deleted during code review due to an error :) -- With best regards, Anton Korobeynikov. Faculty of Mathematics & Mechanics, Saint Petersburg State University. ___ llvm-commits mailing list llvm-commits@cs.uiuc.ed

[llvm-commits] CVS: llvm/lib/Target/MSIL/MSILWriter.cpp

2007-05-06 Thread Chris Lattner
Changes in directory llvm/lib/Target/MSIL: MSILWriter.cpp updated: 1.8 -> 1.9 --- Log message: add this back --- Diffs of the changes: (+1 -0) MSILWriter.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/Target/MSIL/MSILWriter.cpp diff -u llvm/lib/Target/MSIL/MSILWriter.cpp:1

[llvm-commits] CVS: llvm/lib/Target/MSIL/MSILWriter.cpp MSILWriter.h README.TXT

2007-05-06 Thread Anton Korobeynikov
Changes in directory llvm/lib/Target/MSIL: MSILWriter.cpp updated: 1.7 -> 1.8 MSILWriter.h updated: 1.5 -> 1.6 README.TXT updated: 1.1 -> 1.2 --- Log message: Update MSIL BE. This patch fixes most weird glitches outlined in README.txt. Patch by Roman Samoilov! --- Diffs of the changes: (+44

[llvm-commits] CVS: llvm/lib/Target/MSIL/MSILWriter.cpp MSILWriter.h

2007-05-02 Thread Devang Patel
Changes in directory llvm/lib/Target/MSIL: MSILWriter.cpp updated: 1.6 -> 1.7 MSILWriter.h updated: 1.4 -> 1.5 --- Log message: Drop 'const' --- Diffs of the changes: (+4 -4) MSILWriter.cpp |4 ++-- MSILWriter.h |4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) Index: l

[llvm-commits] CVS: llvm/lib/Target/MSIL/MSILWriter.cpp MSILWriter.h

2007-05-02 Thread Devang Patel
Changes in directory llvm/lib/Target/MSIL: MSILWriter.cpp updated: 1.5 -> 1.6 MSILWriter.h updated: 1.3 -> 1.4 --- Log message: Use 'static const char' instead of 'static const int'. Due to darwin gcc bug, one version of darwin linker coalesces static const int, which defauts PassID based pass

[llvm-commits] CVS: llvm/lib/Target/MSIL/MSILWriter.cpp MSILWriter.h

2007-05-01 Thread Devang Patel
Changes in directory llvm/lib/Target/MSIL: MSILWriter.cpp updated: 1.4 -> 1.5 MSILWriter.h updated: 1.2 -> 1.3 --- Log message: Do not use typeinfo to identify pass in pass manager. --- Diffs of the changes: (+6 -3) MSILWriter.cpp |2 ++ MSILWriter.h |7 --- 2 files changed,

[llvm-commits] CVS: llvm/lib/Target/MSIL/MSILWriter.cpp MSILWriter.h

2007-04-16 Thread Anton Korobeynikov
Changes in directory llvm/lib/Target/MSIL: MSILWriter.cpp updated: 1.3 -> 1.4 MSILWriter.h updated: 1.1 -> 1.2 --- Log message: Removed tabs everywhere except autogenerated & external files. Add make target for tabs checking. --- Diffs of the changes: (+3 -3) MSILWriter.cpp |4 ++-- M

[llvm-commits] CVS: llvm/lib/Target/MSIL/MSILWriter.cpp

2007-04-10 Thread Reid Spencer
Changes in directory llvm/lib/Target/MSIL: MSILWriter.cpp updated: 1.2 -> 1.3 --- Log message: For PR1146: http://llvm.org/PR1146 : Put the parameter attributes in their own ParamAttr name space. Adjust the rest of llvm as a result. --- Diffs of the changes: (+2 -2) MSILWriter.cpp |4 +

[llvm-commits] CVS: llvm/lib/Target/MSIL/MSILWriter.cpp

2007-04-08 Thread Reid Spencer
Changes in directory llvm/lib/Target/MSIL: MSILWriter.cpp updated: 1.1 -> 1.2 --- Log message: For PR1146: http://llvm.org/PR1146 : Adapt handling of parameter attributes to use the new ParamAttrsList class. --- Diffs of the changes: (+4 -2) MSILWriter.cpp |6 -- 1 files changed, 4

[llvm-commits] CVS: llvm/lib/Target/MSIL/MSILWriter.cpp MSILWriter.h Makefile

2007-03-21 Thread Anton Korobeynikov
Changes in directory llvm/lib/Target/MSIL: MSILWriter.cpp added (r1.1) MSILWriter.h added (r1.1) Makefile added (r1.1) --- Log message: Let the new backend begin! --- Diffs of the changes: (+1594 -0) MSILWriter.cpp | 1350 + MSILWrite