diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-04-02 22:51:04 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-04-02 22:51:04 +0000 |
commit | 493a441391e2f28ff211835a0afba7aced4265e8 (patch) | |
tree | 3d58a5c79014464658b74616f7cbf2ff993f4a6a /utils/TableGen/ARMDecoderEmitter.cpp | |
parent | 9981814a40c5eb909f344ef3d2877a6357744a83 (diff) |
Fixed build warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100244 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/ARMDecoderEmitter.cpp')
-rw-r--r-- | utils/TableGen/ARMDecoderEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp index 50136bcf52..12c753b973 100644 --- a/utils/TableGen/ARMDecoderEmitter.cpp +++ b/utils/TableGen/ARMDecoderEmitter.cpp @@ -300,7 +300,7 @@ public: FilterChooser &getVariableFC() { assert(NumFiltered == 1); assert(FilterChooserMap.size() == 1); - return *(FilterChooserMap.find(-1)->second); + return *(FilterChooserMap.find((unsigned)-1)->second); } Filter(const Filter &f); |