From: Daniel Dunbar Date: Mon, 2 Feb 2009 18:06:39 +0000 (+0000) Subject: Add FIXME. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a82b52ae83fa1c09266b2fa5f0375392f7d127f;p=clang Add FIXME. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63531 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGCall.cpp b/lib/CodeGen/CGCall.cpp index 7fc3176d2d..c08b93bd84 100644 --- a/lib/CodeGen/CGCall.cpp +++ b/lib/CodeGen/CGCall.cpp @@ -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;