unbreak i1 constants with the cpp writer, eliminate special case.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33133 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/llvm2cpp/CppWriter.cpp b/tools/llvm2cpp/CppWriter.cpp
index 82997ce..845fad4 100644
--- a/tools/llvm2cpp/CppWriter.cpp
+++ b/tools/llvm2cpp/CppWriter.cpp
@@ -666,12 +666,8 @@
     return;
   }
   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
-    if (CI->getType() == Type::Int1Ty)
-      Out << "ConstantInt* " << constName << " = ConstantInt::get(" 
-          << (CI->getZExtValue() ? "true" : "false") << ");";
-    else
-      Out << "ConstantInt* " << constName << " = ConstantInt::get(" 
-          << typeName << ", " << CI->getZExtValue() << ");";
+    Out << "ConstantInt* " << constName << " = ConstantInt::get(" 
+        << typeName << ", " << CI->getZExtValue() << ");";
   } else if (isa<ConstantAggregateZero>(CV)) {
     Out << "ConstantAggregateZero* " << constName 
         << " = ConstantAggregateZero::get(" << typeName << ");";