Change Neon polynomial types to be signed to match GCC.

llvm-svn: 119405
This commit is contained in:
Bob Wilson 2010-11-16 23:57:03 +00:00
parent 0045702afe
commit 789e015ce7
1 changed files with 2 additions and 2 deletions

View File

@ -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.