Capitalize methods for better consistency
authorChris Lattner <sabre@nondot.org>
Mon, 21 Nov 2005 07:51:06 +0000 (07:51 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 21 Nov 2005 07:51:06 +0000 (07:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24455 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/AsmPrinter.h

index 2704efc6a14ba8079e61bd6e5ba14ab48100b3d0..c63669ffb44aea1f5594212e66b98dc681172925 100644 (file)
@@ -150,27 +150,27 @@ namespace llvm {
     /// 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);
   };
 }