Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
578 B

  1. //===-- llvm/CodeGen/DAGCombine.h ------- SelectionDAG Nodes ---*- C++ -*-===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. //
  10. #ifndef LLVM_CODEGEN_DAGCOMBINE_H
  11. #define LLVM_CODEGEN_DAGCOMBINE_H
  12. namespace llvm {
  13. enum CombineLevel {
  14. BeforeLegalizeTypes,
  15. AfterLegalizeTypes,
  16. AfterLegalizeVectorOps,
  17. AfterLegalizeDAG
  18. };
  19. } // end llvm namespace
  20. #endif