aboutsummaryrefslogtreecommitdiff
path: root/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-10 20:13:28 +0000
committerChris Lattner <sabre@nondot.org>2007-08-10 20:13:28 +0000
commitaf6f528b2bd6c3ee517e02d346238addb74159cc (patch)
treecdf566abe157790c58dbb9382294c9ebcb7acdc8 /CodeGen
parent009e9f7e456de974ac457df6614cd2f87b7480dd (diff)
New file, just a placeholder for now.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41002 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen')
-rw-r--r--CodeGen/CGAggExpr.cpp17
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;