forked from OSchip/llvm-project
[llvm] Fix header guards (NFC)
Identified with llvm-header-guard.
This commit is contained in:
parent
6ac12e4b34
commit
1cc558bd4f
|
@ -11,8 +11,8 @@
|
|||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_LIB_ANALYSIS_OBJCARCUTIL_H
|
||||
#define LLVM_LIB_ANALYSIS_OBJCARCUTIL_H
|
||||
#ifndef LLVM_ANALYSIS_OBJCARCUTIL_H
|
||||
#define LLVM_ANALYSIS_OBJCARCUTIL_H
|
||||
|
||||
#include "llvm/IR/InstrTypes.h"
|
||||
#include "llvm/IR/LLVMContext.h"
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
// library (e.g., libmvec, SVML) according to TargetLibraryInfo.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
#ifndef LLVM_TRANSFORMS_UTILS_REPLACEWITHVECLIB_H
|
||||
#define LLVM_TRANSFORMS_UTILS_REPLACEWITHVECLIB_H
|
||||
#ifndef LLVM_CODEGEN_REPLACEWITHVECLIB_H
|
||||
#define LLVM_CODEGEN_REPLACEWITHVECLIB_H
|
||||
|
||||
#include "llvm/IR/PassManager.h"
|
||||
#include "llvm/InitializePasses.h"
|
||||
|
@ -33,4 +33,4 @@ struct ReplaceWithVeclibLegacy : public FunctionPass {
|
|||
};
|
||||
|
||||
} // End namespace llvm
|
||||
#endif // LLVM_TRANSFORMS_UTILS_REPLACEWITHVECLIB_H
|
||||
#endif // LLVM_CODEGEN_REPLACEWITHVECLIB_H
|
||||
|
|
Loading…
Reference in New Issue