Chris Lattner | 78ed840 | 2007-08-10 20:13:28 +0000 | [diff] [blame^] | 1 | //===--- CGAggExpr.cpp - Emit LLVM Code from Aggregate Expressions --------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Chris Lattner and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code to emit Aggregate Expr nodes as LLVM code. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenFunction.h" |
| 15 | |
| 16 | using namespace clang; |
| 17 | using namespace CodeGen; |