blob: 6afc98db402477acdb7714e9a3ba6f284ef4b8bd [file] [log] [blame]
//===------ polly/CodeGeneration.h - The Polly code generator *- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
//===----------------------------------------------------------------------===//
#ifndef POLLY_CODEGENERATION_H
#define POLLY_CODEGENERATION_H
#include "polly/Config/config.h"
#ifdef CLOOG_FOUND
namespace polly {
enum VectorizerChoice {
VECTORIZER_NONE,
VECTORIZER_POLLY,
VECTORIZER_UNROLL_ONLY,
VECTORIZER_FIRST_NEED_GROUPED_UNROLL = VECTORIZER_UNROLL_ONLY,
VECTORIZER_BB
};
extern VectorizerChoice PollyVectorizerChoice;
}
#endif // CLOOG_FOUND
#endif // POLLY_CODEGENERATION_H