diff options
| author | Jim Laskey <jlaskey@mac.com> | 2005-11-01 20:06:59 +0000 |
|---|---|---|
| committer | Jim Laskey <jlaskey@mac.com> | 2005-11-01 20:06:59 +0000 |
| commit | 802748cd61839883045a1f6190674ac69c9d2233 (patch) | |
| tree | 1365f6c1e208d6a858b29c3f4e8f72e310102a9e /llvm/utils/TableGen/InstrInfoEmitter.cpp | |
| parent | 9e1784d738217d3d52556d0cc6e492e0f2a95122 (diff) | |
| download | bcm5719-llvm-802748cd61839883045a1f6190674ac69c9d2233.tar.gz bcm5719-llvm-802748cd61839883045a1f6190674ac69c9d2233.zip | |
Allow itineraries to be passed through the Target Machine.
llvm-svn: 24139
Diffstat (limited to 'llvm/utils/TableGen/InstrInfoEmitter.cpp')
| -rw-r--r-- | llvm/utils/TableGen/InstrInfoEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/InstrInfoEmitter.cpp b/llvm/utils/TableGen/InstrInfoEmitter.cpp index c911ad3ed6e..3f7d5dbadc1 100644 --- a/llvm/utils/TableGen/InstrInfoEmitter.cpp +++ b/llvm/utils/TableGen/InstrInfoEmitter.cpp @@ -247,7 +247,7 @@ void InstrInfoEmitter::GatherItinClasses() { for (unsigned i = 0, N = DefList.size(); i < N; i++) { Record *Def = DefList[i]; - ItinClassMap[Def->getName()] = i + 1; + ItinClassMap[Def->getName()] = i; } } |

