mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Change Neon polynomial types to be signed to match GCC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119405 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b308b62e6a
commit
4fbf63845f
@ -833,8 +833,8 @@ void NeonEmitter::run(raw_ostream &OS) {
|
||||
|
||||
// Emit NEON-specific scalar typedefs.
|
||||
OS << "typedef float float32_t;\n";
|
||||
OS << "typedef uint8_t poly8_t;\n";
|
||||
OS << "typedef uint16_t poly16_t;\n";
|
||||
OS << "typedef int8_t poly8_t;\n";
|
||||
OS << "typedef int16_t poly16_t;\n";
|
||||
OS << "typedef uint16_t float16_t;\n";
|
||||
|
||||
// Emit Neon vector typedefs.
|
||||
|
Loading…
Reference in New Issue
Block a user