diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2011-02-20 13:06:31 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2011-02-20 13:06:31 +0000 |
commit | bca07a4524feb4edec581062d631a13116320a24 (patch) | |
tree | a9243275843fbeaa590afc07ee888e006b8d54ea /lib/CodeGen/CGCXX.h | |
parent | 998bc5802ecdd65ce3b270f6c69a8ae8557f0a10 (diff) |
Notes
Diffstat (limited to 'lib/CodeGen/CGCXX.h')
-rw-r--r-- | lib/CodeGen/CGCXX.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/lib/CodeGen/CGCXX.h b/lib/CodeGen/CGCXX.h deleted file mode 100644 index 1e6adb05a0d92..0000000000000 --- a/lib/CodeGen/CGCXX.h +++ /dev/null @@ -1,36 +0,0 @@ -//===----- CGCXX.h - C++ related code CodeGen declarations ------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// These classes wrap the information about a call or function -// definition used to handle ABI compliancy. -// -//===----------------------------------------------------------------------===// - -#ifndef CLANG_CODEGEN_CGCXX_H -#define CLANG_CODEGEN_CGCXX_H - -namespace clang { - -/// CXXCtorType - C++ constructor types -enum CXXCtorType { - Ctor_Complete, // Complete object ctor - Ctor_Base, // Base object ctor - Ctor_CompleteAllocating // Complete object allocating ctor -}; - -/// CXXDtorType - C++ destructor types -enum CXXDtorType { - Dtor_Deleting, // Deleting dtor - Dtor_Complete, // Complete object dtor - Dtor_Base // Base object dtor -}; - -} // end namespace clang - -#endif // CLANG_CODEGEN_CGCXX_H |