mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 01:30:47 -04:00
30 lines
870 B
C
30 lines
870 B
C
|
|
//===-- llvm/CodeGen/MachineCombinerPattern.h - Instruction pattern supported by
|
||
|
|
// combiner ------*- C++ -*-===//
|
||
|
|
//
|
||
|
|
// The LLVM Compiler Infrastructure
|
||
|
|
//
|
||
|
|
// This file is distributed under the University of Illinois Open Source
|
||
|
|
// License. See LICENSE.TXT for details.
|
||
|
|
//
|
||
|
|
//===----------------------------------------------------------------------===//
|
||
|
|
//
|
||
|
|
// This file defines instruction pattern supported by combiner
|
||
|
|
//
|
||
|
|
//===----------------------------------------------------------------------===//
|
||
|
|
|
||
|
|
#ifndef LLVM_CODEGEN_MACHINECOMBINERPATTERN_H
|
||
|
|
#define LLVM_CODEGEN_MACHINECOMBINERPATTERN_H
|
||
|
|
|
||
|
|
namespace llvm {
|
||
|
|
|
||
|
|
/// Enumeration of instruction pattern supported by machine combiner
|
||
|
|
///
|
||
|
|
///
|
||
|
|
namespace MachineCombinerPattern {
|
||
|
|
// Forward declaration
|
||
|
|
enum MC_PATTERN : int;
|
||
|
|
} // end namespace MachineCombinerPattern
|
||
|
|
} // end namespace llvm
|
||
|
|
|
||
|
|
#endif
|