remove obsolete fixme

llvm-svn: 33151
This commit is contained in:
Chris Lattner 2007-01-12 22:52:50 +00:00
parent 7cfcfbb801
commit bc884d406d

View 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;
}