Make BuildByRefType take a ValueDecl instead of a QualType and an alignment.

llvm-svn: 81315
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h
index d7f9ec2..063ebf9 100644
--- a/clang/lib/CodeGen/CodeGenFunction.h
+++ b/clang/lib/CodeGen/CodeGenFunction.h
@@ -343,8 +343,7 @@
   llvm::Value *LoadBlockStruct();
 
   llvm::Value *GetAddrOfBlockDecl(const BlockDeclRefExpr *E);
-
-  const llvm::Type *BuildByRefType(QualType Ty, uint64_t Align);
+  const llvm::Type *BuildByRefType(const ValueDecl *D);
 
   void GenerateCode(const FunctionDecl *FD,
                     llvm::Function *Fn);