Cosmetic fixes: include guards.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65824 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Mikhail Glushenkov 2009-03-02 09:02:28 +00:00
parent 41f36f456b
commit bd21c83d64
5 changed files with 16 additions and 16 deletions

View File

@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TOOLS_LLVMC2_ACTION_H
#define LLVM_TOOLS_LLVMC2_ACTION_H
#ifndef LLVM_INCLUDE_COMPILER_DRIVER_ACTION_H
#define LLVM_INCLUDE_COMPILER_DRIVER_ACTION_H
#include <string>
#include <vector>
@ -47,4 +47,4 @@ namespace llvmc {
}
#endif // LLVM_TOOLS_LLVMC2_ACTION_H
#endif // LLVM_INCLUDE_COMPILER_DRIVER_ACTION_H

View File

@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H
#define LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H
#ifndef LLVM_INCLUDE_COMPILER_DRIVER_COMPILATION_GRAPH_H
#define LLVM_INCLUDE_COMPILER_DRIVER_COMPILATION_GRAPH_H
#include "llvm/CompilerDriver/Tool.h"
@ -319,4 +319,4 @@ namespace llvm {
}
#endif // LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H
#endif // LLVM_INCLUDE_COMPILER_DRIVER_COMPILATION_GRAPH_H

View File

@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TOOLS_LLVMC2_ERROR_H
#define LLVM_TOOLS_LLVMC2_ERROR_H
#ifndef LLVM_INCLUDE_COMPILER_DRIVER_ERROR_H
#define LLVM_INCLUDE_COMPILER_DRIVER_ERROR_H
#include <stdexcept>
@ -32,4 +32,4 @@ namespace llvmc {
}
#endif //LLVM_TOOLS_LLVMC2_ERROR_H
#endif // LLVM_INCLUDE_COMPILER_DRIVER_ERROR_H

View File

@ -7,12 +7,12 @@
//
//===----------------------------------------------------------------------===//
//
// Plugin support for llvmc2.
// Plugin support for llvmc.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TOOLS_LLVMC2_PLUGIN_H
#define LLVM_TOOLS_LLVMC2_PLUGIN_H
#ifndef LLVM_INCLUDE_COMPILER_DRIVER_PLUGIN_H
#define LLVM_INCLUDE_COMPILER_DRIVER_PLUGIN_H
#include "llvm/Support/Registry.h"
@ -76,4 +76,4 @@ namespace llvmc {
}
#endif // LLVM_TOOLS_LLVMC2_PLUGIN_H
#endif // LLVM_INCLUDE_COMPILER_DRIVER_PLUGIN_H

View File

@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TOOLS_LLVMC2_TOOL_H
#define LLVM_TOOLS_LLVMC2_TOOL_H
#ifndef LLVM_INCLUDE_COMPILER_DRIVER_TOOL_H
#define LLVM_INCLUDE_COMPILER_DRIVER_TOOL_H
#include "llvm/CompilerDriver/Action.h"
@ -82,4 +82,4 @@ namespace llvmc {
}
#endif //LLVM_TOOLS_LLVMC2_TOOL_H
#endif // LLVM_INCLUDE_COMPILER_DRIVER_TOOL_H