aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGCall.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-02-02 18:06:39 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-02-02 18:06:39 +0000
commit9a82b52ae83fa1c09266b2fa5f0375392f7d127f (patch)
tree39d81e4a46d8b092a5566e4fb661c57307bba88e /lib/CodeGen/CGCall.cpp
parentd6f0b4e97e681ea5d165125960f34b3b8c19e1dc (diff)
Add FIXME.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63531 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGCall.cpp')
-rw-r--r--lib/CodeGen/CGCall.cpp4
1 files changed, 4 insertions, 0 deletions
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;