Anders Carlsson | 81f6f36 | 2010-11-28 17:46:52 +0000 | [diff] [blame^] | 1 | //===----- CGCXXABI.cpp - Interface to C++ ABIs -----------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This provides an abstract class for C++ code generation. Concrete subclasses |
| 11 | // of this implement code generation for specific C++ ABIs. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "CGCXXABI.h" |
| 16 | |
| 17 | using namespace clang; |
| 18 | |