diff options
| author | Owen Anderson <resistor@mac.com> | 2012-01-24 18:37:29 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2012-01-24 18:37:29 +0000 |
| commit | d845d9d9e9fdaa85d7bf586f94bbae8063ec511c (patch) | |
| tree | f9b4a63206d8117c14a11f52fc8f7e18f1f00b4b /llvm/lib/Target/ARM/MCTargetDesc | |
| parent | 14952a0e32ac745324fc432a074fec3dfc192f46 (diff) | |
| download | bcm5719-llvm-d845d9d9e9fdaa85d7bf586f94bbae8063ec511c.tar.gz bcm5719-llvm-d845d9d9e9fdaa85d7bf586f94bbae8063ec511c.zip | |
Widen the instruction encoder that TblGen emits to a 64 bits, which should accomodate every target I can think of offhand.
llvm-svn: 148833
Diffstat (limited to 'llvm/lib/Target/ARM/MCTargetDesc')
| -rw-r--r-- | llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp b/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp index 84f2448cfd5..87f633e49de 100644 --- a/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp +++ b/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp @@ -64,7 +64,7 @@ public: // getBinaryCodeForInstr - TableGen'erated function for getting the // binary encoding for an instruction. - unsigned getBinaryCodeForInstr(const MCInst &MI, + uint64_t getBinaryCodeForInstr(const MCInst &MI, SmallVectorImpl<MCFixup> &Fixups) const; /// getMachineOpValue - Return binary encoding of operand. If the machine |

