[llvm-commits] CVS: llvm/include/llvm/CodeGen/AsmPrinter.h

Chris Lattner lattner at cs.uiuc.edu
Sun Nov 20 23:51:19 PST 2005



Changes in directory llvm/include/llvm/CodeGen:

AsmPrinter.h updated: 1.17 -> 1.18
---
Log message:

Capitalize methods for better consistency


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

 AsmPrinter.h |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)


Index: llvm/include/llvm/CodeGen/AsmPrinter.h
diff -u llvm/include/llvm/CodeGen/AsmPrinter.h:1.17 llvm/include/llvm/CodeGen/AsmPrinter.h:1.18
--- llvm/include/llvm/CodeGen/AsmPrinter.h:1.17	Mon Nov 21 01:05:42 2005
+++ llvm/include/llvm/CodeGen/AsmPrinter.h	Mon Nov 21 01:51:06 2005
@@ -150,27 +150,27 @@
     /// pass, you must make sure to call it explicitly.
     bool doFinalization(Module &M);
 
-    /// setupMachineFunction - This should be called when a new MachineFunction
+    /// SetupMachineFunction - This should be called when a new MachineFunction
     /// is being processed from runOnMachineFunction.
-    void setupMachineFunction(MachineFunction &MF);
+    void SetupMachineFunction(MachineFunction &MF);
 
-    /// emitAlignment - Emit an alignment directive to the specified power of
+    /// EmitAlignment - Emit an alignment directive to the specified power of
     /// two boundary.  For example, if you pass in 3 here, you will get an 8
     /// byte alignment.  If a global value is specified, and if that global has
     /// an explicit alignment requested, it will override the alignment request.
-    void emitAlignment(unsigned NumBits, const GlobalValue *GV = 0) const;
+    void EmitAlignment(unsigned NumBits, const GlobalValue *GV = 0) const;
 
-    /// emitZeros - Emit a block of zeros.
+    /// EmitZeros - Emit a block of zeros.
     ///
-    void emitZeros(uint64_t NumZeros) const;
+    void EmitZeros(uint64_t NumZeros) const;
 
-    /// emitConstantValueOnly - Print out the specified constant, without a
+    /// EmitConstantValueOnly - Print out the specified constant, without a
     /// storage class.  Only constants of first-class type are allowed here.
-    void emitConstantValueOnly(const Constant *CV);
+    void EmitConstantValueOnly(const Constant *CV);
 
-    /// emitGlobalConstant - Print a general LLVM constant to the .s file.
+    /// EmitGlobalConstant - Print a general LLVM constant to the .s file.
     ///
-    void emitGlobalConstant(const Constant* CV);
+    void EmitGlobalConstant(const Constant* CV);
   };
 }
 






More information about the llvm-commits mailing list