xref: /minix/minix/llvm/passes/include/pass.h (revision 0a6a1f1d)
1 
2 #ifndef _PASS_H
3 #define _PASS_H
4 
5 #include <set>
6 #include <map>
7 
8 #include <llvm/Pass.h>
9 #include <llvm/Support/raw_ostream.h>
10 #include <llvm/Analysis/AliasAnalysis.h>
11 
12 #include <llvm/Support/Debug.h>
13 #include <llvm/Transforms/Utils/Cloning.h>
14 #include <llvm/ADT/Statistic.h>
15 
16 #include <llvm/Support/Regex.h>
17 #include <llvm/Assembly/Writer.h>
18 #include <llvm/Support/CallSite.h>
19 #include <llvm/Support/CommandLine.h>
20 #include <llvm/Analysis/LoopInfo.h>
21 
22 #include <llvm/Support/InstIterator.h>
23 #include <llvm/Transforms/Utils/Local.h>
24 
25 #include <llvm/Transforms/Scalar.h>
26 
27 #include <cstdio>
28 #include <cstdlib>
29 #include <iostream>
30 #include <sstream>
31 #include <string>
32 
33 #include <common/pass_common.h>
34 
35 #endif /* _PASS_H */
36