Skip to content

Commit b0ff8df

Browse files
committed
RM
1 parent ee19f4e commit b0ff8df

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

llvm/include/llvm/Analysis/VectorUtils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include "llvm/Analysis/LoopAccessAnalysis.h"
1919
#include "llvm/IR/Module.h"
2020
#include "llvm/IR/VFABIDemangler.h"
21-
#include "llvm/IR/VectorUtils.h"
21+
#include "llvm/IR/VectorTypeUtils.h"
2222
#include "llvm/Support/CheckedArithmetic.h"
2323

2424
namespace llvm {

llvm/include/llvm/IR/VectorUtils.h renamed to llvm/include/llvm/IR/VectorTypeUtils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===----------- VectorUtils.h - Vector type utility functions -*- C++ -*-====//
1+
//===------- VectorTypeUtils.h - Vector type utility functions -*- C++ -*-====//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

llvm/lib/IR/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ add_llvm_component_library(LLVMCore
7373
Value.cpp
7474
ValueSymbolTable.cpp
7575
VectorBuilder.cpp
76-
VectorUtils.cpp
76+
VectorTypeUtils.cpp
7777
Verifier.cpp
7878
VFABIDemangler.cpp
7979
RuntimeLibcalls.cpp

llvm/lib/IR/VFABIDemangler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "llvm/ADT/SmallString.h"
1212
#include "llvm/ADT/StringSwitch.h"
1313
#include "llvm/IR/Module.h"
14-
#include "llvm/IR/VectorUtils.h"
14+
#include "llvm/IR/VectorTypeUtils.h"
1515
#include "llvm/Support/Debug.h"
1616
#include "llvm/Support/raw_ostream.h"
1717
#include <limits>

llvm/lib/IR/VectorUtils.cpp renamed to llvm/lib/IR/VectorTypeUtils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
//===- VectorUtils.cpp - Vector type utility functions --------------------===//
1+
//===------- VectorTypeUtils.cpp - Vector type utility functions ----------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "llvm/IR/VectorUtils.h"
9+
#include "llvm/IR/VectorTypeUtils.h"
1010
#include "llvm/ADT/SmallVectorExtras.h"
1111

1212
using namespace llvm;

llvm/unittests/IR/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ add_llvm_unittest(IRTests
5151
ValueMapTest.cpp
5252
ValueTest.cpp
5353
VectorBuilderTest.cpp
54+
VectorTypeUtilsTest.cpp
5455
VectorTypesTest.cpp
55-
VectorUtilsTest.cpp
5656
VerifierTest.cpp
5757
VFABIDemanglerTest.cpp
5858
VPIntrinsicTest.cpp

llvm/unittests/IR/VectorUtilsTest.cpp renamed to llvm/unittests/IR/VectorTypeUtilsTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
//===------- VectorUtilsTest.cpp - Vector utils tests ---------------------===//
1+
//===------- VectorTypeUtilsTest.cpp - Vector utils tests -----------------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "llvm/IR/VectorUtils.h"
9+
#include "llvm/IR/VectorTypeUtils.h"
1010
#include "llvm/IR/DerivedTypes.h"
1111
#include "llvm/IR/LLVMContext.h"
1212
#include "gtest/gtest.h"

0 commit comments

Comments
 (0)