diff options
| author | Matthew Simpson <mssimpso@codeaurora.org> | 2017-01-31 20:29:10 +0000 |
|---|---|---|
| committer | Matthew Simpson <mssimpso@codeaurora.org> | 2017-01-31 20:29:10 +0000 |
| commit | 42932fb632f3403a1eccf85bf77197b8e5815e3c (patch) | |
| tree | d81a0d8abb6992158dab9ed2023c62b1d974eb16 | |
| parent | 59a7ceebb3cc05341cbcabc52a1512e45ba75530 (diff) | |
| download | bcm5719-llvm-42932fb632f3403a1eccf85bf77197b8e5815e3c.tar.gz bcm5719-llvm-42932fb632f3403a1eccf85bf77197b8e5815e3c.zip | |
Fix VectorUtils include guard name (NFC)
VectorUtils was moved to Analysis from Transforms/Utils, but some comments and
the include guard name still reflect its old location.
llvm-svn: 293684
| -rw-r--r-- | llvm/include/llvm/Analysis/VectorUtils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Analysis/VectorUtils.h b/llvm/include/llvm/Analysis/VectorUtils.h index eaa068b89c7..7b154530f18 100644 --- a/llvm/include/llvm/Analysis/VectorUtils.h +++ b/llvm/include/llvm/Analysis/VectorUtils.h @@ -1,4 +1,4 @@ -//===- llvm/Transforms/Utils/VectorUtils.h - Vector utilities -*- C++ -*-=====// +//===- llvm/Analysis/VectorUtils.h - Vector utilities -----------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -11,8 +11,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_TRANSFORMS_UTILS_VECTORUTILS_H -#define LLVM_TRANSFORMS_UTILS_VECTORUTILS_H +#ifndef LLVM_ANALYSIS_VECTORUTILS_H +#define LLVM_ANALYSIS_VECTORUTILS_H #include "llvm/ADT/MapVector.h" #include "llvm/Analysis/TargetLibraryInfo.h" |

