diff options
author | Jakub Staszak <kubastaszak@gmail.com> | 2013-03-07 20:21:27 +0000 |
---|---|---|
committer | Jakub Staszak <kubastaszak@gmail.com> | 2013-03-07 20:21:27 +0000 |
commit | 4a521da51a4eea92d76a7d635b63ab9f8a57c936 (patch) | |
tree | ea12858fc18703fecf2d976146e54bd91a295791 | |
parent | 4b7e609548934542ffd92b1d63ea8597b43a565a (diff) |
Change Index type from unsigned long to unsigned. This should fix PR14980.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176645 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/IR/Instructions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/IR/Instructions.h b/include/llvm/IR/Instructions.h index 75696f7ab0..57b0d89276 100644 --- a/include/llvm/IR/Instructions.h +++ b/include/llvm/IR/Instructions.h @@ -2658,7 +2658,7 @@ public: protected: SwitchInstTy *SI; - unsigned long Index; + unsigned Index; SubsetsItTy SubsetIt; /// Initializes case iterator for given SwitchInst and for given |