New file, just a placeholder for now.
llvm-svn: 41002
diff --git a/clang/CodeGen/CGAggExpr.cpp b/clang/CodeGen/CGAggExpr.cpp
new file mode 100644
index 0000000..42b45a9
--- /dev/null
+++ b/clang/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;