DAGCombine.h 578 B

12345678910111213141516171819202122232425
  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