[llvm-commits] [llvm] r106795 - /llvm/trunk/utils/TableGen/NeonEmitter.cpp

Bob Wilson bob.wilson at apple.com
Thu Jun 24 15:04:30 PDT 2010


Author: bwilson
Date: Thu Jun 24 17:04:30 2010
New Revision: 106795

URL: http://llvm.org/viewvc/llvm-project?rev=106795&view=rev
Log:
Fix up some comments.

Modified:
    llvm/trunk/utils/TableGen/NeonEmitter.cpp

Modified: llvm/trunk/utils/TableGen/NeonEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/NeonEmitter.cpp?rev=106795&r1=106794&r2=106795&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/NeonEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/NeonEmitter.cpp Thu Jun 24 17:04:30 2010
@@ -187,7 +187,7 @@
 
 /// 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 @@
   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;





More information about the llvm-commits mailing list