Fix a whole bunch of binary literals which were the wrong size. All were being silen...
authorPete Cooper <peter_cooper@apple.com>
Thu, 7 Aug 2014 05:46:54 +0000 (05:46 +0000)
committerPete Cooper <peter_cooper@apple.com>
Thu, 7 Aug 2014 05:46:54 +0000 (05:46 +0000)
commit3f2aee7e02a5ddbe173bcf02fbb007f0dc71dcf0
tree7081558af51647580db84ff0dfe39cd7aa4d51be
parent792202d090f08fbe4c567bb2a2c2fe634c57b4e0
Fix a whole bunch of binary literals which were the wrong size.  All were being silently zero extended to the correct width.

The commit after this changes { } and 0bxx literals to be of type bits<n> and not int.  This means we need to write exactly the right number of bits, and not rely on the values being silently zero extended for us.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215082 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/ARM/ARMInstrNEON.td
lib/Target/ARM/ARMInstrThumb2.td
lib/Target/Mips/Mips16InstrFormats.td
lib/Target/Sparc/SparcInstrInfo.td
lib/Target/Sparc/SparcInstrVIS.td
lib/Target/XCore/XCoreInstrInfo.td