[llvm-commits] CVS: llvm/lib/Target/PowerPC/PowerPC.h

Misha Brukman brukman at cs.uiuc.edu
Mon Aug 16 22:03:08 PDT 2004



Changes in directory llvm/lib/Target/PowerPC:

PowerPC.h updated: 1.8 -> 1.9
---
Log message:

Consistently name passed with 32 or 64 in their name


---
Diffs of the changes:  (+2 -2)

Index: llvm/lib/Target/PowerPC/PowerPC.h
diff -u llvm/lib/Target/PowerPC/PowerPC.h:1.8 llvm/lib/Target/PowerPC/PowerPC.h:1.9
--- llvm/lib/Target/PowerPC/PowerPC.h:1.8	Sat Aug 14 17:16:36 2004
+++ llvm/lib/Target/PowerPC/PowerPC.h	Tue Aug 17 00:02:58 2004
@@ -23,10 +23,10 @@
 class TargetMachine;
 
 FunctionPass *createPPCBranchSelectionPass();
-FunctionPass *createPPCAsmPrinter(std::ostream &OS,TargetMachine &TM);
 FunctionPass *createPPC32ISelSimple(TargetMachine &TM);
+FunctionPass *createPPC32AsmPrinter(std::ostream &OS, TargetMachine &TM);
 FunctionPass *createPPC64ISelSimple(TargetMachine &TM);
-FunctionPass *createPPC64AsmPrinter(std::ostream &OS,TargetMachine &TM);
+FunctionPass *createPPC64AsmPrinter(std::ostream &OS, TargetMachine &TM);
 
 } // end namespace llvm;
 






More information about the llvm-commits mailing list