Add a FIXME.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@87089 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/clang-cc/clang-cc.cpp b/tools/clang-cc/clang-cc.cpp
index ec9a43f..f718fef 100644
--- a/tools/clang-cc/clang-cc.cpp
+++ b/tools/clang-cc/clang-cc.cpp
@@ -794,6 +794,10 @@
   // Initialize frontend options.
   InitializeFrontendOptions(Opts.getFrontendOpts());
 
+  // FIXME: The target information in frontend options should be split out into
+  // TargetOptions, and the target options in codegen options should move there
+  // as well. Then we could properly initialize in layering order.
+
   // Initialize base triple.  If a -triple option has been specified, use
   // that triple.  Otherwise, default to the host triple.
   llvm::Triple Triple(Opts.getFrontendOpts().TargetTriple);