diff options
author | Anders Carlsson <andersca@mac.com> | 2010-11-28 17:46:52 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-11-28 17:46:52 +0000 |
commit | 81f6f3626eaed9d3f29f1d474ba629a93dfa9388 (patch) | |
tree | 9c3610865866f3dcc8a372ef55c0530b77838cee /clang/lib/CodeGen/CGCXXABI.cpp | |
parent | e5b7415b21c00a11b06d0395f24d6f7cce100f9d (diff) | |
download | bcm5719-llvm-81f6f3626eaed9d3f29f1d474ba629a93dfa9388.tar.gz bcm5719-llvm-81f6f3626eaed9d3f29f1d474ba629a93dfa9388.zip |
Add a CGCXXABI.cpp file.
llvm-svn: 120249
Diffstat (limited to 'clang/lib/CodeGen/CGCXXABI.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGCXXABI.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGCXXABI.cpp b/clang/lib/CodeGen/CGCXXABI.cpp new file mode 100644 index 00000000000..aeba1470988 --- /dev/null +++ b/clang/lib/CodeGen/CGCXXABI.cpp @@ -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; + |