[llvm-commits] CVS: llvm/tools/llvm-upgrade/UpgradeLexer.l

2007-02-07 Thread Reid Spencer
Changes in directory llvm/tools/llvm-upgrade: UpgradeLexer.l updated: 1.18 -> 1.19 --- Log message: For PR1187: http://llvm.org/PR1187 : Allow @ before identifer names. Recognize the i1, i8, i16, i32, i64 keywords as type names corresponding to bool, ubyte, ushort, uint, and ulong respectively.

[llvm-commits] CVS: llvm/tools/llvm-upgrade/UpgradeLexer.l UpgradeParser.y UpgradeInternals.h

2007-01-14 Thread Reid Spencer
Changes in directory llvm/tools/llvm-upgrade: UpgradeLexer.l updated: 1.14 -> 1.15 UpgradeParser.y updated: 1.40 -> 1.41 UpgradeInternals.h updated: 1.2 -> 1.3 --- Log message: Reorganize things a bit in preparation for rewrite. Although this looks like a lot, its really only two changes: 1. M

[llvm-commits] CVS: llvm/tools/llvm-upgrade/UpgradeLexer.l UpgradeParser.y

2006-12-30 Thread Reid Spencer
Changes in directory llvm/tools/llvm-upgrade: UpgradeLexer.l updated: 1.10 -> 1.11 UpgradeParser.y updated: 1.26 -> 1.27 --- Log message: For PR950: http://llvm.org/PR950 : Don't attempt to parse both the old and new grammars. It is near impossible to get it right. Remove support for the new de

[llvm-commits] CVS: llvm/tools/llvm-upgrade/UpgradeLexer.l UpgradeParser.y

2006-12-29 Thread Reid Spencer
Changes in directory llvm/tools/llvm-upgrade: UpgradeLexer.l updated: 1.9 -> 1.10 UpgradeParser.y updated: 1.25 -> 1.26 --- Log message: For PR950: http://llvm.org/PR950 : Fix several bugs and update for new assembly syntax. Changes made include: 1. Fixing rules for icmp/fcmp instructions to no

[llvm-commits] CVS: llvm/tools/llvm-upgrade/UpgradeLexer.l UpgradeParser.y

2006-12-02 Thread Reid Spencer
Changes in directory llvm/tools/llvm-upgrade: UpgradeLexer.l updated: 1.8 -> 1.9 UpgradeParser.y updated: 1.14 -> 1.15 --- Log message: Implement upgrade of setcc instruction to icmp/fcmp, but don't enable it yet. --- Diffs of the changes: (+74 -1) UpgradeLexer.l | 22 ++

[llvm-commits] CVS: llvm/tools/llvm-upgrade/UpgradeLexer.l UpgradeParser.y ParserInternals.h UpgradeParser.h

2006-12-02 Thread Reid Spencer
Changes in directory llvm/tools/llvm-upgrade: UpgradeLexer.l updated: 1.7 -> 1.8 UpgradeParser.y updated: 1.13 -> 1.14 ParserInternals.h updated: 1.6 -> 1.7 UpgradeParser.h updated: 1.9 -> 1.10 --- Log message: Support several new upgrades: div -> fdiv/udiv/sdiv rem -> frem/urem/srem exce