remove obsolete fixme
authorChris Lattner <sabre@nondot.org>
Fri, 12 Jan 2007 22:52:50 +0000 (22:52 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 12 Jan 2007 22:52:50 +0000 (22:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33151 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CBackend/CBackend.cpp

index 1346acbb040651e6d21b65137c284b3ad4a564f8..06779cad5da6d228428e6b31455da64c7b0816aa 100644 (file)
@@ -400,9 +400,6 @@ std::ostream &CWriter::printType(std::ostream &Out, const Type *Ty,
                                  bool isSigned, const std::string &NameSoFar,
                                  bool IgnoreName) {
   if (Ty->isPrimitiveType() || Ty->isIntegral()) {
-    // FIXME:Signedness. When integer types are signless, this should just
-    // always pass "false" for the sign of the primitive type. The instructions
-    // will figure out how the value is to be interpreted.
     printSimpleType(Out, Ty, isSigned, NameSoFar);
     return Out;
   }