[cfe-commits] r64768 - /cfe/trunk/lib/CodeGen/CodeGenFunction.h

Mike Stump mrs at apple.com
Tue Feb 17 09:00:03 PST 2009


Author: mrs
Date: Tue Feb 17 11:00:02 2009
New Revision: 64768

URL: http://llvm.org/viewvc/llvm-project?rev=64768&view=rev
Log:
Fixup spacing a little.

Modified:
    cfe/trunk/lib/CodeGen/CodeGenFunction.h

Modified: cfe/trunk/lib/CodeGen/CodeGenFunction.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CodeGenFunction.h?rev=64768&r1=64767&r2=64768&view=diff

==============================================================================
--- cfe/trunk/lib/CodeGen/CodeGenFunction.h (original)
+++ cfe/trunk/lib/CodeGen/CodeGenFunction.h Tue Feb 17 11:00:02 2009
@@ -156,7 +156,7 @@
 
 private:
   CGDebugInfo* DebugInfo;
-  
+
   /// LabelIDs - Track arbitrary ids assigned to labels for use in implementing
   /// the GCC address-of-label extension and indirect goto. IDs are assigned to
   /// labels inside getIDForAddrOfLabel().
@@ -201,7 +201,7 @@
   /// DidCallStackSave - Whether llvm.stacksave has been called. Used to avoid
   /// calling llvm.stacksave for multiple VLAs in the same scope.
   bool DidCallStackSave;
-  
+
   struct CleanupEntry {
     /// CleanupBlock - The block of code that does the actual cleanup.
     llvm::BasicBlock *CleanupBlock;
@@ -261,7 +261,7 @@
     BlockInfo(const llvm::Type *blt, const char *n)
       : BlockLiteralTy(blt), Name(n) {}
   };
-  
+
   llvm::Function *GenerateBlockFunction(const BlockExpr *Expr,
                                         const BlockInfo& Info);
 
@@ -538,13 +538,13 @@
   /// EmitLoadOfScalar - Load a scalar value from an address, taking
   /// care to appropriately convert from the memory representation to
   /// the LLVM value representation.
-  llvm::Value *EmitLoadOfScalar(llvm::Value *Addr, bool Volatile, 
+  llvm::Value *EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
                                 QualType Ty);
 
   /// EmitStoreOfScalar - Store a scalar value to an address, taking
   /// care to appropriately convert from the memory representation to
   /// the LLVM value representation.
-  void EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr, 
+  void EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
                          bool Volatile);
 
   /// EmitLoadOfLValue - Given an expression that represents a value lvalue,
@@ -635,7 +635,7 @@
                          unsigned BuiltinID, const CallExpr *E);
 
   RValue EmitBlockCallExpr(const CallExpr *E);
-  
+
   /// EmitTargetBuiltinExpr - Emit the given builtin call. Returns 0 if the call
   /// is unhandled by the current target.
   llvm::Value *EmitTargetBuiltinExpr(unsigned BuiltinID, const CallExpr *E);





More information about the cfe-commits mailing list