[cfe-commits] r130608 - /cfe/trunk/lib/Rewrite/RewriteObjC.cpp
Ken Dyck
kd at kendyck.com
Sat Apr 30 09:08:27 PDT 2011
Author: kjdyck
Date: Sat Apr 30 11:08:27 2011
New Revision: 130608
URL: http://llvm.org/viewvc/llvm-project?rev=130608&view=rev
Log:
Replace a literal 8 with Context->getCharWidth() in
SynthesizeByrefCopyDestroyHelper(). No change in functionality intended.
Modified:
cfe/trunk/lib/Rewrite/RewriteObjC.cpp
Modified: cfe/trunk/lib/Rewrite/RewriteObjC.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Rewrite/RewriteObjC.cpp?rev=130608&r1=130607&r2=130608&view=diff
==============================================================================
--- cfe/trunk/lib/Rewrite/RewriteObjC.cpp (original)
+++ cfe/trunk/lib/Rewrite/RewriteObjC.cpp Sat Apr 30 11:08:27 2011
@@ -5057,7 +5057,7 @@
unsigned VoidPtrSize =
static_cast<unsigned>(Context->getTypeSize(Context->VoidPtrTy));
- unsigned offset = (VoidPtrSize*4 + IntSize + IntSize)/8;
+ unsigned offset = (VoidPtrSize*4 + IntSize + IntSize)/Context->getCharWidth();
S += " _Block_object_assign((char*)dst + ";
S += utostr(offset);
S += ", *(void * *) ((char*)src + ";
More information about the cfe-commits
mailing list