Initial commit for the rewrite of the inline cost analysis to operate
[oota-llvm.git] / include / llvm / Transforms / Vectorize.h
1 //===-- Vectorize.h - Vectorization Transformations -------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This header file defines prototypes for accessor functions that expose passes
11 // in the Vectorize transformations library.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_TRANSFORMS_VECTORIZE_H
16 #define LLVM_TRANSFORMS_VECTORIZE_H
17
18 namespace llvm {
19
20 class BasicBlockPass;
21
22 //===----------------------------------------------------------------------===//
23 //
24 // BBVectorize - A basic-block vectorization pass.
25 //
26 BasicBlockPass *createBBVectorizePass();
27
28 } // End llvm namespace
29
30 #endif