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/ARMCodeEmitter.cpp | |
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/ARMCodeEmitter.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMCodeEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMCodeEmitter.cpp b/llvm/lib/Target/ARM/ARMCodeEmitter.cpp index 1193fb1b8c6..3064f5701fb 100644 --- a/llvm/lib/Target/ARM/ARMCodeEmitter.cpp +++ b/llvm/lib/Target/ARM/ARMCodeEmitter.cpp @@ -74,7 +74,7 @@ namespace { /// getBinaryCodeForInstr - This function, generated by the /// CodeEmitterGenerator using TableGen, produces the binary encoding for /// machine instructions. - unsigned getBinaryCodeForInstr(const MachineInstr &MI) const; + uint64_t getBinaryCodeForInstr(const MachineInstr &MI) const; bool runOnMachineFunction(MachineFunction &MF); |