projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b308b62
)
Change Neon polynomial types to be signed to match GCC.
author
Bob Wilson
<bob.wilson@apple.com>
Tue, 16 Nov 2010 23:57:03 +0000
(23:57 +0000)
committer
Bob Wilson
<bob.wilson@apple.com>
Tue, 16 Nov 2010 23:57:03 +0000
(23:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119405
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/TableGen/NeonEmitter.cpp
patch
|
blob
|
history
diff --git
a/utils/TableGen/NeonEmitter.cpp
b/utils/TableGen/NeonEmitter.cpp
index 1c0edd17dc878293e162c89c411264a0e4e925ac..333ca2f31c1d4caa1ca6633ab3d96bb0a4e17938 100644
(file)
--- a/
utils/TableGen/NeonEmitter.cpp
+++ b/
utils/TableGen/NeonEmitter.cpp
@@
-833,8
+833,8
@@
void NeonEmitter::run(raw_ostream &OS) {
// Emit NEON-specific scalar typedefs.
OS << "typedef float float32_t;\n";
- OS << "typedef
u
int8_t poly8_t;\n";
- OS << "typedef
u
int16_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.