Skip to content

Commit

Permalink
Change Neon polynomial types to be signed to match GCC.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119405 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
bob-wilson committed Nov 16, 2010
1 parent b308b62 commit 4fbf638
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/TableGen/NeonEmitter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 4fbf638

Please sign in to comment.