| OLD | NEW |
| 1 //===- llvm/InitializePasses.h -------- Initialize All Passes ---*- C++ -*-===// | 1 //===- llvm/InitializePasses.h -------- Initialize All Passes ---*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The LLVM Compiler Infrastructure | 3 // The LLVM Compiler Infrastructure |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 // | 9 // |
| 10 // This file contains the declarations for the pass initialization routines | 10 // This file contains the declarations for the pass initialization routines |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 void initializeInstSimplifierPass(PassRegistry&); | 267 void initializeInstSimplifierPass(PassRegistry&); |
| 268 void initializeUnpackMachineBundlesPass(PassRegistry&); | 268 void initializeUnpackMachineBundlesPass(PassRegistry&); |
| 269 void initializeFinalizeMachineBundlesPass(PassRegistry&); | 269 void initializeFinalizeMachineBundlesPass(PassRegistry&); |
| 270 void initializeLoopVectorizePass(PassRegistry&); | 270 void initializeLoopVectorizePass(PassRegistry&); |
| 271 void initializeBBVectorizePass(PassRegistry&); | 271 void initializeBBVectorizePass(PassRegistry&); |
| 272 void initializeMachineFunctionPrinterPassPass(PassRegistry&); | 272 void initializeMachineFunctionPrinterPassPass(PassRegistry&); |
| 273 void initializeExpandConstantExprPass(PassRegistry&); // @LOCALMOD | 273 void initializeExpandConstantExprPass(PassRegistry&); // @LOCALMOD |
| 274 void initializeExpandCtorsPass(PassRegistry&); // @LOCALMOD | 274 void initializeExpandCtorsPass(PassRegistry&); // @LOCALMOD |
| 275 void initializeExpandTlsPass(PassRegistry&); // @LOCALMOD | 275 void initializeExpandTlsPass(PassRegistry&); // @LOCALMOD |
| 276 void initializeExpandTlsConstantExprPass(PassRegistry&); // @LOCALMOD | 276 void initializeExpandTlsConstantExprPass(PassRegistry&); // @LOCALMOD |
| 277 void initializeExpandVarArgsPass(PassRegistry&); // @LOCALMOD |
| 277 void initializeNaClCcRewritePass(PassRegistry&); // @LOCALMOD | 278 void initializeNaClCcRewritePass(PassRegistry&); // @LOCALMOD |
| 278 } | 279 } |
| 279 | 280 |
| 280 #endif | 281 #endif |
| OLD | NEW |