Skip to content

Commit

Permalink
Fix up an include guard.
Browse files Browse the repository at this point in the history
This should have been done as part of the move in r274960.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@274999 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
chisophugis committed Jul 9, 2016
1 parent 81fe784 commit de764bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/llvm/Transforms/Vectorize/SLPVectorizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_TRANSFORMS_SCALAR_SLPVECTORIZER_H
#define LLVM_TRANSFORMS_SCALAR_SLPVECTORIZER_H
#ifndef LLVM_TRANSFORMS_VECTORIZE_SLPVECTORIZER_H
#define LLVM_TRANSFORMS_VECTORIZE_SLPVECTORIZER_H

#include "llvm/ADT/MapVector.h"
#include "llvm/Analysis/AliasAnalysis.h"
Expand Down Expand Up @@ -110,4 +110,4 @@ struct SLPVectorizerPass : public PassInfoMixin<SLPVectorizerPass> {
};
}

#endif // LLVM_TRANSFORMS_SCALAR_SLPVECTORIZER_H
#endif // LLVM_TRANSFORMS_VECTORIZE_SLPVECTORIZER_H

0 comments on commit de764bb

Please sign in to comment.