[llvm-commits] CVS: llvm/tools/llvm-upgrade/Makefile llvm-upgrade.cpp

2007-05-05 Thread Chris Lattner
Changes in directory llvm/tools/llvm-upgrade: Makefile updated: 1.6 - 1.7 llvm-upgrade.cpp updated: 1.8 - 1.9 --- Log message: Remove the -emit-bytecode option. Noone in the llvm tree uses it, and this keeps llvm-upgrade a simple source to source tool. --- Diffs of the changes: (+3 -13)

[llvm-commits] CVS: llvm/tools/llvm-upgrade/Makefile

2007-01-05 Thread Reid Spencer
Changes in directory llvm/tools/llvm-upgrade: Makefile updated: 1.4 - 1.5 --- Log message: Fix dependencies. The lexer depends on the grammar for the UpgradeParser.h file so make it depend on the .y file as well. This ensures that in parallel builds the lexer is built after bison runs. ---