diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-02-02 18:06:39 +0000 | 
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-02 18:06:39 +0000 | 
| commit | 50f520171c8d3171ccd6c83c38923acbb71d1acb (patch) | |
| tree | d7249697737458b35046d436a4125fda40b5e649 | |
| parent | 2171f5aeec1ac43492c817502a49ea5882d4a5fd (diff) | |
| download | bcm5719-llvm-50f520171c8d3171ccd6c83c38923acbb71d1acb.tar.gz bcm5719-llvm-50f520171c8d3171ccd6c83c38923acbb71d1acb.zip  | |
Add FIXME.
llvm-svn: 63531
| -rw-r--r-- | clang/lib/CodeGen/CGCall.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index 7fc3176d2db..c08b93bd84a 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/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;  | 

