]> granicus.if.org Git - clang/commitdiff
Add FIXME.
authorDaniel Dunbar <daniel@zuster.org>
Mon, 2 Feb 2009 18:06:39 +0000 (18:06 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 2 Feb 2009 18:06:39 +0000 (18:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63531 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGCall.cpp

index 7fc3176d2db66a684f8c6fe0f4ecba599436a9f5..c08b93bd84aa1f20682c7394933c88fedeb05325 100644 (file)
@@ -482,6 +482,10 @@ void X86_64ABIInfo::classify(QualType Ty,
                              ASTContext &Context,
                              uint64_t OffsetBase,
                              Class &Lo, Class &Hi) const {
+  // FIXME: This code can be simplified by introducing a simple value
+  // class for Class pairs with appropriate constructor methods for
+  // the various situations.
+
   Lo = Hi = NoClass;
 
   Class &Current = OffsetBase < 64 ? Lo : Hi;