diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2018-09-03 16:22:05 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2018-09-03 16:22:05 +0000 |
commit | c30340b207493bc61acdea202dfda882be92df02 (patch) | |
tree | 6d1eef2c13af52cd7d1e79bbf5910c82f2ba3378 /llvm/lib/Transforms | |
parent | 5a79d1e377f47d31d3cc4379619cc4096bdc6b1f (diff) | |
download | bcm5719-llvm-c30340b207493bc61acdea202dfda882be92df02.tar.gz bcm5719-llvm-c30340b207493bc61acdea202dfda882be92df02.zip |
Add header guards to some headers that are missing them
Also adjust some of dsymutil's headers to put the header guards at the top,
otherwise the compiler will not recognize them as header guards.
llvm-svn: 341323
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h b/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h index 199374cdabf..f3c8bde9f8f 100644 --- a/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h +++ b/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h @@ -13,6 +13,9 @@ // //===----------------------------------------------------------------------===// +#ifndef LLVM_LIB_TRANSFORMS_AGGRESSIVEINSTCOMBINE_COMBINEINTERNAL_H +#define LLVM_LIB_TRANSFORMS_AGGRESSIVEINSTCOMBINE_COMBINEINTERNAL_H + #include "llvm/ADT/MapVector.h" #include "llvm/ADT/STLExtras.h" #include "llvm/Analysis/AliasAnalysis.h" @@ -119,3 +122,5 @@ private: void ReduceExpressionDag(Type *SclTy); }; } // end namespace llvm. + +#endif |