aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-02-17 17:00:02 +0000
committerMike Stump <mrs@apple.com>2009-02-17 17:00:02 +0000
commit09429b962811f2c0a7a81a1b0a89f96f5878b20c (patch)
treec1c65e548a5d30183fdaa8257007691cda8a35c9 /lib/CodeGen/CodeGenFunction.h
parent655753a757b3eae4306cf59e84a63b78ebb2b9a7 (diff)
Fixup spacing a little.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64768 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r--lib/CodeGen/CodeGenFunction.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index 7f36c71ab6..36d14f8cfa 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/lib/CodeGen/CodeGenFunction.h
@@ -156,7 +156,7 @@ public:
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 @@ private:
/// 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 @@ public:
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 @@ public:
/// 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 @@ public:
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);