mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
Tighten up the AnalysisUsage of lots of passes, primarily to correctly indicate whether or not they invalidate the CFG
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2385 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3330e5be7a
commit
0ad0d0e09a
@ -31,6 +31,10 @@ public:
|
|||||||
(*Out) << M;
|
(*Out) << M;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||||
|
AU.setPreservesAll();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class PrintFunctionPass : public FunctionPass {
|
class PrintFunctionPass : public FunctionPass {
|
||||||
@ -54,6 +58,10 @@ public:
|
|||||||
(*Out) << Banner << (Value*)F;
|
(*Out) << Banner << (Value*)F;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||||
|
AU.setPreservesAll();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user