Remove some dead FIXMEs

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101092 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp
index 005bc4a..dc0d39a 100644
--- a/lib/Sema/SemaType.cpp
+++ b/lib/Sema/SemaType.cpp
@@ -950,8 +950,6 @@
     // "void" instead. 
     T = Context.VoidTy;
       
-    // FIXME: Keep track of source location information within the constructor
-    // or destructor name.
     if (TInfo)
       ReturnTypeInfo = Context.getTrivialTypeSourceInfo(T, 
                                                     D.getName().StartLocation);
@@ -960,7 +958,6 @@
   case UnqualifiedId::IK_ConversionFunctionId:
     // The result type of a conversion function is the type that it
     // converts to.
-    // FIXME: Keep track of the location of the 'operator' keyword?
     T = GetTypeFromParser(D.getName().ConversionFunctionId, 
                           TInfo? &ReturnTypeInfo : 0);
     break;