From: Matthew Simpson Date: Tue, 31 Jan 2017 20:29:10 +0000 (+0000) Subject: Fix VectorUtils include guard name (NFC) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91af0522122f242d8d2a49986a474842998b0bb4;p=llvm 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293684 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/VectorUtils.h b/include/llvm/Analysis/VectorUtils.h index eaa068b89c7..7b154530f18 100644 --- a/include/llvm/Analysis/VectorUtils.h +++ b/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"