forked from OSchip/llvm-project
28 lines
808 B
C++
28 lines
808 B
C++
//===--- clang.h - C-Language Front-end -----------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by Chris Lattner and is distributed under
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This is the header file that pulls together the top-level driver.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_CLANG_H
|
|
#define LLVM_CLANG_CLANG_H
|
|
|
|
namespace llvm {
|
|
namespace clang {
|
|
class Preprocessor;
|
|
|
|
/// DoPrintPreprocessedInput - Implement -E mode.
|
|
void DoPrintPreprocessedInput(Preprocessor &PP);
|
|
|
|
} // end namespace clang
|
|
} // end namespace llvm
|
|
|
|
#endif
|