[llvm-commits] [llvm] r138330 - /llvm/trunk/utils/TableGen/FastISelEmitter.cpp

Eric Christopher echristo at apple.com
Tue Aug 23 08:42:35 PDT 2011


Author: echristo
Date: Tue Aug 23 10:42:35 2011
New Revision: 138330

URL: http://llvm.org/viewvc/llvm-project?rev=138330&view=rev
Log:
Fix fpimmm->fpimm typo.

Patch by Micah Villmow!

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

Modified: llvm/trunk/utils/TableGen/FastISelEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/FastISelEmitter.cpp?rev=138330&r1=138329&r2=138330&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/FastISelEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/FastISelEmitter.cpp Tue Aug 23 10:42:35 2011
@@ -504,7 +504,7 @@
 
     std::vector<std::string>* PhysRegInputs = new std::vector<std::string>();
     if (InstPatNode->getOperator()->getName() == "imm" ||
-        InstPatNode->getOperator()->getName() == "fpimmm")
+        InstPatNode->getOperator()->getName() == "fpimm")
       PhysRegInputs->push_back("");
     else {
       // Compute the PhysRegs used by the given pattern, and check that





More information about the llvm-commits mailing list