From: Eric Christopher Date: Fri, 9 Oct 2015 20:30:48 +0000 (+0000) Subject: Add a fixme to handleTargetFeatures. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77a45a46c8c230894d8e3177a6fee66c1b950d6f;p=clang Add a fixme to handleTargetFeatures. The goal of wanting this to avoid munging the feature list is so that it can be used for various targets as a way of both adding and verifying the features that are going to be output into the IR. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@249894 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/TargetInfo.h b/include/clang/Basic/TargetInfo.h index d5bccf1660..4b82e9a7ce 100644 --- a/include/clang/Basic/TargetInfo.h +++ b/include/clang/Basic/TargetInfo.h @@ -801,6 +801,8 @@ public: /// /// The target may modify the features list, to change which options are /// passed onwards to the backend. + /// FIXME: This part should be fixed so that we can change handleTargetFeatures + /// to merely a TargetInfo initialization routine. /// /// \return False on error. virtual bool handleTargetFeatures(std::vector &Features,