diff options
Diffstat (limited to 'CodeGen')
-rw-r--r-- | CodeGen/CGAggExpr.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/CodeGen/CGAggExpr.cpp b/CodeGen/CGAggExpr.cpp new file mode 100644 index 0000000000..42b45a9327 --- /dev/null +++ b/CodeGen/CGAggExpr.cpp @@ -0,0 +1,17 @@ +//===--- CGAggExpr.cpp - Emit LLVM Code from Aggregate Expressions --------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by Chris Lattner and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This contains code to emit Aggregate Expr nodes as LLVM code. +// +//===----------------------------------------------------------------------===// + +#include "CodeGenFunction.h" + +using namespace clang; +using namespace CodeGen; |