diff options
author | Chris Lattner <sabre@nondot.org> | 2007-01-12 22:52:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-01-12 22:52:50 +0000 |
commit | c09b52faff35ae0740c001c635b9967559622f2b (patch) | |
tree | b66feb0525d35c0f1386475122ba157a20e86c0a /lib/Target/CBackend/CBackend.cpp | |
parent | ef60b2c4ed67017a46442903c898bc24ed9a6c91 (diff) |
remove obsolete fixme
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33151 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CBackend/CBackend.cpp')
-rw-r--r-- | lib/Target/CBackend/CBackend.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index 1346acbb04..06779cad5d 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; } |