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.
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
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
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
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 ++
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