mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-02 10:46:06 +00:00
19 lines
616 B
C++
19 lines
616 B
C++
![]() |
//===----- 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;
|
||
|
|