summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-06-24 22:04:30 +0000
committerBob Wilson <bob.wilson@apple.com>2010-06-24 22:04:30 +0000
commit1ac27cf5aefb224cb6d3da5ca99cdff96c954459 (patch)
treed9a09b1a2ad3e7f2b02d27960d0d94192e19ca41 /utils
parent9969bc3d190252782e586ee9b4c0922e4dd234cf (diff)
downloadllvm-1ac27cf5aefb224cb6d3da5ca99cdff96c954459.tar.gz
llvm-1ac27cf5aefb224cb6d3da5ca99cdff96c954459.tar.bz2
llvm-1ac27cf5aefb224cb6d3da5ca99cdff96c954459.tar.xz
Fix up some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106795 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/NeonEmitter.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp
index ac641b184e..5e61131cbb 100644
--- a/utils/TableGen/NeonEmitter.cpp
+++ b/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;