[cfe-commits] r120249 - in /cfe/trunk/lib/CodeGen: CGCXXABI.cpp CMakeLists.txt

Anders Carlsson andersca at mac.com
Sun Nov 28 09:46:52 PST 2010


Author: andersca
Date: Sun Nov 28 11:46:52 2010
New Revision: 120249

URL: http://llvm.org/viewvc/llvm-project?rev=120249&view=rev
Log:
Add a CGCXXABI.cpp file.

Added:
    cfe/trunk/lib/CodeGen/CGCXXABI.cpp
Modified:
    cfe/trunk/lib/CodeGen/CMakeLists.txt

Added: cfe/trunk/lib/CodeGen/CGCXXABI.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGCXXABI.cpp?rev=120249&view=auto
==============================================================================
--- cfe/trunk/lib/CodeGen/CGCXXABI.cpp (added)
+++ cfe/trunk/lib/CodeGen/CGCXXABI.cpp Sun Nov 28 11:46:52 2010
@@ -0,0 +1,18 @@
+//===----- CGCXXABI.cpp - Interface to C++ ABIs -----------------*- C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This provides an abstract class for C++ code generation. Concrete subclasses
+// of this implement code generation for specific C++ ABIs.
+//
+//===----------------------------------------------------------------------===//
+
+#include "CGCXXABI.h"
+
+using namespace clang;
+

Modified: cfe/trunk/lib/CodeGen/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CMakeLists.txt?rev=120249&r1=120248&r2=120249&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CMakeLists.txt (original)
+++ cfe/trunk/lib/CodeGen/CMakeLists.txt Sun Nov 28 11:46:52 2010
@@ -9,6 +9,7 @@
   CGCall.cpp
   CGClass.cpp
   CGCXX.cpp
+  CGCXXABI.cpp
   CGDebugInfo.cpp
   CGDecl.cpp
   CGDeclCXX.cpp





More information about the cfe-commits mailing list