forked from OSchip/llvm-project
Fix up header comments to make Chris happy.
llvm-svn: 74537
This commit is contained in:
parent
4e0541649b
commit
36f62e5df6
|
@ -6,6 +6,11 @@
|
|||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file declares LLVMContext, a container of "global" state in LLVM, such
|
||||
// as the global type and constant uniquing tables.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_LLVMCONTEXT_H
|
||||
#define LLVM_LLVMCONTEXT_H
|
||||
|
@ -35,6 +40,11 @@ class APInt;
|
|||
class APFloat;
|
||||
class Value;
|
||||
|
||||
/// This is an important class for using LLVM in a threaded context. It
|
||||
/// (opaquely) owns and manages the core "global" data of LLVM's core
|
||||
/// infrastructure, including the type and constant uniquing tables.
|
||||
/// LLVMContext itself provides no locking guarantees, so you should be careful
|
||||
/// to have one context per thread.
|
||||
class LLVMContext {
|
||||
LLVMContextImpl* pImpl;
|
||||
public:
|
||||
|
|
|
@ -6,6 +6,11 @@
|
|||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file implements LLVMContext, as a wrapper around the opaque
|
||||
// class LLVMContextImpl.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/LLVMContext.h"
|
||||
#include "llvm/Constants.h"
|
||||
|
|
|
@ -6,6 +6,11 @@
|
|||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file declares LLVMContextImpl, the opaque implementation
|
||||
// of LLVMContext.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_LLVMCONTEXT_IMPL_H
|
||||
#define LLVM_LLVMCONTEXT_IMPL_H
|
||||
|
@ -17,4 +22,4 @@ class LLVMContextImpl {
|
|||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue