forked from OSchip/llvm-project
LowerSubregs should not clobber any analysis.
llvm-svn: 51933
This commit is contained in:
parent
eecdf659e8
commit
a15e7eb29b
|
@ -30,6 +30,10 @@ namespace {
|
|||
return "Subregister lowering instruction pass";
|
||||
}
|
||||
|
||||
void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
AU.setPreservesAll();
|
||||
}
|
||||
|
||||
/// runOnMachineFunction - pass entry point
|
||||
bool runOnMachineFunction(MachineFunction&);
|
||||
|
||||
|
|
Loading…
Reference in New Issue