2006-07-04 19:04:05 +00:00
|
|
|
//===--- 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 {
|
2006-07-29 06:30:25 +00:00
|
|
|
class Preprocessor;
|
|
|
|
class LangOptions;
|
2006-07-04 19:04:05 +00:00
|
|
|
|
|
|
|
/// DoPrintPreprocessedInput - Implement -E mode.
|
2006-07-29 06:35:08 +00:00
|
|
|
void DoPrintPreprocessedInput(unsigned MainFileID, Preprocessor &PP,
|
|
|
|
LangOptions &Options);
|
2006-07-04 19:04:05 +00:00
|
|
|
|
|
|
|
} // end namespace clang
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|