MachineCombinerPattern.h 870 B

1234567891011121314151617181920212223242526272829
  1. //===-- llvm/CodeGen/MachineCombinerPattern.h - Instruction pattern supported by
  2. // combiner ------*- C++ -*-===//
  3. //
  4. // The LLVM Compiler Infrastructure
  5. //
  6. // This file is distributed under the University of Illinois Open Source
  7. // License. See LICENSE.TXT for details.
  8. //
  9. //===----------------------------------------------------------------------===//
  10. //
  11. // This file defines instruction pattern supported by combiner
  12. //
  13. //===----------------------------------------------------------------------===//
  14. #ifndef LLVM_CODEGEN_MACHINECOMBINERPATTERN_H
  15. #define LLVM_CODEGEN_MACHINECOMBINERPATTERN_H
  16. namespace llvm {
  17. /// Enumeration of instruction pattern supported by machine combiner
  18. ///
  19. ///
  20. namespace MachineCombinerPattern {
  21. // Forward declaration
  22. enum MC_PATTERN : int;
  23. } // end namespace MachineCombinerPattern
  24. } // end namespace llvm
  25. #endif