[llvm-commits] [llvm] r155024 - /llvm/trunk/utils/TableGen/RegisterInfoEmitter.cpp

Jim Grosbach grosbach at apple.com
Wed Apr 18 11:39:19 PDT 2012


Author: grosbach
Date: Wed Apr 18 13:39:19 2012
New Revision: 155024

URL: http://llvm.org/viewvc/llvm-project?rev=155024&view=rev
Log:
Tidy up. Add a '.' at the end of the sentence.

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

Modified: llvm/trunk/utils/TableGen/RegisterInfoEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/RegisterInfoEmitter.cpp?rev=155024&r1=155023&r2=155024&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/RegisterInfoEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/RegisterInfoEmitter.cpp Wed Apr 18 13:39:19 2012
@@ -32,7 +32,7 @@
                               CodeGenTarget &Target, CodeGenRegBank &Bank) {
   const std::vector<CodeGenRegister*> &Registers = Bank.getRegisters();
 
-  // Register enums are stored as uint16_t in the tables. Make sure we'll fit
+  // Register enums are stored as uint16_t in the tables. Make sure we'll fit.
   assert(Registers.size() <= 0xffff && "Too many regs to fit in tables");
 
   std::string Namespace = Registers[0]->TheDef->getValueAsString("Namespace");





More information about the llvm-commits mailing list