r338328 - Revert "Add a definition for FieldSize that seems to make sense here."

Eric Christopher via cfe-commits cfe-commits at lists.llvm.org
Mon Jul 30 16:21:52 PDT 2018


Author: echristo
Date: Mon Jul 30 16:21:51 2018
New Revision: 338328

URL: http://llvm.org/viewvc/llvm-project?rev=338328&view=rev
Log:
Revert "Add a definition for FieldSize that seems to make sense here."

This reverts commit r338327, the problem was previously fixed in r338321.

Modified:
    cfe/trunk/lib/CodeGen/CGDebugInfo.cpp

Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.cpp?rev=338328&r1=338327&r2=338328&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.cpp Mon Jul 30 16:21:51 2018
@@ -974,7 +974,6 @@ llvm::DIType *CGDebugInfo::CreateType(co
   if (CGM.getLangOpts().OpenCL) {
     FType = CGM.getContext().IntTy;
     EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
-    FieldSize = CGM.getContext().getTypeSize(Ty);
     EltTys.push_back(CreateMemberType(Unit, FType, "__align", &FieldOffset));
   } else {
     FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);




More information about the cfe-commits mailing list