Daniel Dunbar | 0498cfc | 2009-11-10 19:51:53 +0000 | [diff] [blame^] | 1 | //===-- Options.h - clang-cc Option Handling --------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef LLVM_CLANGCC_OPTIONS_H |
| 11 | #define LLVM_CLANGCC_OPTIONS_H |
| 12 | |
| 13 | #include "llvm/ADT/StringMap.h" |
| 14 | |
| 15 | namespace clang { |
| 16 | |
| 17 | class CompileOptions; |
| 18 | class LangOptions; |
| 19 | class TargetInfo; |
| 20 | |
| 21 | void ComputeFeatureMap(TargetInfo &Target, llvm::StringMap<bool> &Features); |
| 22 | |
| 23 | void InitializeCompileOptions(CompileOptions &Opts, |
| 24 | const llvm::StringMap<bool> &Features); |
| 25 | |
| 26 | } // end namespace clang |
| 27 | |
| 28 | #endif |