aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-05 00:38:44 +0000
committerChris Lattner <sabre@nondot.org>2010-04-05 00:38:44 +0000
commit0e21124a12a70b4f882c3227f711c944523b5698 (patch)
tree0f6fb04d1d9d39a5837093e3e5c74ce9f4bd341f /lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
parent4e127676a8d067dcbd4f8acf6d4769643d0fadb9 (diff)
downloadexternal_llvm-0e21124a12a70b4f882c3227f711c944523b5698.zip
external_llvm-0e21124a12a70b4f882c3227f711c944523b5698.tar.gz
external_llvm-0e21124a12a70b4f882c3227f711c944523b5698.tar.bz2
simplify various getAnalysisUsage implementations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100376 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp')
-rw-r--r--lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
index 9173ad2..bd7ccf8 100644
--- a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
+++ b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
@@ -277,8 +277,6 @@ namespace {
void getAnalysisUsage(AnalysisUsage &AU) const {
AsmPrinter::getAnalysisUsage(AU);
- AU.setPreservesAll();
- AU.addRequired<MachineModuleInfo>();
AU.addRequired<DwarfWriter>();
}
};