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 15 #ifndef LLVM_CODEGEN_MACHINECOMBINERPATTERN_H 16 #define LLVM_CODEGEN_MACHINECOMBINERPATTERN_H 17 18 namespace llvm { 19 20 /// Enumeration of instruction pattern supported by machine combiner 21 /// 22 /// 23 namespace MachineCombinerPattern { 24 // Forward declaration 25 enum MC_PATTERN : int; 26 } // end namespace MachineCombinerPattern 27 } // end namespace llvm 28 29 #endif 30