1*0b57cec5SDimitry Andric //===-- Vectorize.cpp -----------------------------------------------------===//
2*0b57cec5SDimitry Andric //
3*0b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*0b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5*0b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*0b57cec5SDimitry Andric //
7*0b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
8*0b57cec5SDimitry Andric //
9*0b57cec5SDimitry Andric // This file implements common infrastructure for libLLVMVectorizeOpts.a, which
10*0b57cec5SDimitry Andric // implements several vectorization transformations over the LLVM intermediate
11*0b57cec5SDimitry Andric // representation, including the C bindings for that library.
12*0b57cec5SDimitry Andric //
13*0b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
14*0b57cec5SDimitry Andric 
15*0b57cec5SDimitry Andric #include "llvm/InitializePasses.h"
161fd87a68SDimitry Andric #include "llvm/PassRegistry.h"
17*0b57cec5SDimitry Andric 
18*0b57cec5SDimitry Andric using namespace llvm;
19*0b57cec5SDimitry Andric 
205ffd83dbSDimitry Andric /// Initialize all passes linked into the Vectorization library.
initializeVectorization(PassRegistry & Registry)21*0b57cec5SDimitry Andric void llvm::initializeVectorization(PassRegistry &Registry) {
22*0b57cec5SDimitry Andric   initializeLoadStoreVectorizerLegacyPassPass(Registry);
23*0b57cec5SDimitry Andric }
24