From c09b52faff35ae0740c001c635b9967559622f2b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 12 Jan 2007 22:52:50 +0000 Subject: [PATCH] remove obsolete fixme git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33151 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/CBackend/CBackend.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index 1346acbb040..06779cad5da 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -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; }