diff options
| author | Bob Wilson <bob.wilson@apple.com> | 2010-06-24 22:04:30 +0000 |
|---|---|---|
| committer | Bob Wilson <bob.wilson@apple.com> | 2010-06-24 22:04:30 +0000 |
| commit | e26d7103355d47680783c1ca80fe6601e56e460b (patch) | |
| tree | e7146bb46b6cd11739bbe220977f07decd5512be /llvm/utils/TableGen | |
| parent | 3808684055db4d6d8c0049dde7fa0a7198e105c2 (diff) | |
| download | bcm5719-llvm-e26d7103355d47680783c1ca80fe6601e56e460b.tar.gz bcm5719-llvm-e26d7103355d47680783c1ca80fe6601e56e460b.zip | |
Fix up some comments.
llvm-svn: 106795
Diffstat (limited to 'llvm/utils/TableGen')
| -rw-r--r-- | llvm/utils/TableGen/NeonEmitter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/utils/TableGen/NeonEmitter.cpp b/llvm/utils/TableGen/NeonEmitter.cpp index ac641b184e5..5e61131cbb6 100644 --- a/llvm/utils/TableGen/NeonEmitter.cpp +++ b/llvm/utils/TableGen/NeonEmitter.cpp @@ -187,7 +187,7 @@ static char ModType(const char mod, char type, bool &quad, bool &poly, /// TypeString - for a modifier and type, generate the name of the typedef for /// that type. If generic is true, emit the generic vector type rather than -/// the public NEON type. QUc -> uint8x8t_t / __neon_uint8x8_t. +/// the public NEON type. QUc -> uint8x8_t / __neon_uint8x8_t. static std::string TypeString(const char mod, StringRef typestr, bool generic = false) { bool quad = false; @@ -277,9 +277,9 @@ static std::string TypeString(const char mod, StringRef typestr, return s.str(); } -/// TypeString - for a modifier and type, generate the clang BuiltinsARM.def -/// prototype code for the function. See the top of clang's Builtins.def for -/// a description of the type strings. +/// BuiltinTypeString - for a modifier and type, generate the clang +/// BuiltinsARM.def prototype code for the function. See the top of clang's +/// Builtins.def for a description of the type strings. static std::string BuiltinTypeString(const char mod, StringRef typestr, ClassKind ck, bool ret) { bool quad = false; |

