• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef SIMPLIFY_H
2 #define SIMPLIFY_H
3 
4 #include "linearize.h"
5 
6 int simplify_instruction(struct instruction *insn);
7 
8 int replace_with_pseudo(struct instruction *insn, pseudo_t pseudo);
9 
10 #endif
11