diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-07-13 19:24:09 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-07-13 19:24:09 +0000 |
commit | 619e0d6d95879a08ede97c171e1c8712554c7951 (patch) | |
tree | 77098b5d4fbbf6888ba5177e7520a632659b66fc /utils | |
parent | 3fd6e755d0efa29eef06f9b07302daf92c391e5a (diff) | |
download | external_llvm-619e0d6d95879a08ede97c171e1c8712554c7951.zip external_llvm-619e0d6d95879a08ede97c171e1c8712554c7951.tar.gz external_llvm-619e0d6d95879a08ede97c171e1c8712554c7951.tar.bz2 |
Give the ARM BKPT instruction the right operand type.
The immediate is of limited range and the operand type should reflect that.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135066 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/EDEmitter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/TableGen/EDEmitter.cpp b/utils/TableGen/EDEmitter.cpp index 1a0cdee..afe5007 100644 --- a/utils/TableGen/EDEmitter.cpp +++ b/utils/TableGen/EDEmitter.cpp @@ -590,6 +590,7 @@ static int ARMFlagFromOpName(LiteralConstantEmitter *type, IMM("nModImm"); IMM("imm0_255"); IMM("imm0_4095"); + IMM("imm0_65535"); IMM("jt2block_operand"); IMM("t_imm_s4"); IMM("pclabel"); |