rename LLVMDiagChecker.* -> DiagChecker.*

llvm-svn: 39690
This commit is contained in:
Chris Lattner 2007-06-27 17:24:55 +00:00
parent a5b3bb11df
commit a092b149bf
3 changed files with 6 additions and 7 deletions

View File

@ -1,4 +1,4 @@
//===--- LLVMDiagChecker.cpp - Diagnostic Checking Functions --------------===//
//===--- DiagChecker.cpp - Diagnostic Checking Functions ------------------===//
//
// The LLVM Compiler Infrastructure
//
@ -11,7 +11,7 @@
//
//===----------------------------------------------------------------------===//
#include "LLVMDiagChecker.h"
#include "DiagChecker.h"
#include "ASTStreamers.h"
#include "clang/Basic/SourceManager.h"
#include "clang/Lex/Preprocessor.h"

View File

@ -1,4 +1,4 @@
//===--- LLVMDiagChecker.h - Diagnostic Checking Functions ------*- C++ -*-===//
//===--- DiagChecker.h - Diagnostic Checking Functions ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -11,12 +11,11 @@
//
//===----------------------------------------------------------------------===//
#ifndef DRIVER_LLVM_DIAG_CHECKER_H_
#define DRIVER_LLVM_DIAG_CHECKER_H_
#ifndef DRIVER_DIAG_CHECKER_H_
#define DRIVER_DIAG_CHECKER_H_
#include "TextDiagnosticBuffer.h"
#include <string>
#include <vector>
namespace clang {

View File

@ -24,7 +24,7 @@
#include "clang.h"
#include "ASTStreamers.h"
#include "LLVMDiagChecker.h"
#include "DiagChecker.h"
#include "TextDiagnosticPrinter.h"
#include "clang/Parse/Parser.h"
#include "clang/Lex/HeaderSearch.h"