[llvm-commits] CVS: llvm/lib/Target/SubtargetFeature.cpp

Chris Lattner lattner at cs.uiuc.edu
Tue Sep 6 22:44:26 PDT 2005



Changes in directory llvm/lib/Target:

SubtargetFeature.cpp updated: 1.3 -> 1.4
---
Log message:

Print:
'' is not a recognized processor for this target (ignoring processor)

instead of:

 is not a recognized processor for this target (ignoring processor)



---
Diffs of the changes:  (+4 -4)

 SubtargetFeature.cpp |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/lib/Target/SubtargetFeature.cpp
diff -u llvm/lib/Target/SubtargetFeature.cpp:1.3 llvm/lib/Target/SubtargetFeature.cpp:1.4
--- llvm/lib/Target/SubtargetFeature.cpp:1.3	Fri Sep  2 14:27:43 2005
+++ llvm/lib/Target/SubtargetFeature.cpp	Wed Sep  7 00:44:14 2005
@@ -157,8 +157,8 @@
     // Set base feature bits
     Bits = CPUEntry->Value;
   } else {
-    std::cerr << Features[0]
-              << " is not a recognized processor for this target"
+    std::cerr << "'" << Features[0]
+              << "' is not a recognized processor for this target"
               << " (ignoring processor)"
               << "\n";
   }
@@ -177,8 +177,8 @@
       if (isEnabled(Feature)) Bits |=  FeatureEntry->Value;
       else                    Bits &= ~FeatureEntry->Value;
     } else {
-      std::cerr << Feature
-                << " is not a recognized feature for this target"
+      std::cerr << "'" << Feature
+                << "' is not a recognized feature for this target"
                 << " (ignoring feature)"
                 << "\n";
     }






More information about the llvm-commits mailing list