Subversion Repositories QNX 8.QNX8 LLVM/Clang compiler suite

Rev

Blame | Last modification | View Log | Download | RSS feed

  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.  
  13. #ifndef POLLY_OPTIONS_H
  14. #define POLLY_OPTIONS_H
  15.  
  16. #include "llvm/Support/CommandLine.h"
  17.  
  18. extern llvm::cl::OptionCategory PollyCategory;
  19. #endif
  20.