Options.h 642 B

12345678910111213141516171819
  1. //===--------------- polly/Options.h - The Polly option category *- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // Introduce an option category for Polly.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #ifndef POLLY_OPTIONS_H
  13. #define POLLY_OPTIONS_H
  14. #include "llvm/Support/CommandLine.h"
  15. extern llvm::cl::OptionCategory PollyCategory;
  16. #endif