From: Reid Spencer Date: Thu, 8 Feb 2007 09:08:23 +0000 (+0000) Subject: Rename a field so there's less confusion between fields of the same name. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2dcb5834c0db29d2d1e1f6d9b509533df25bd85e;p=oota-llvm.git Rename a field so there's less confusion between fields of the same name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34049 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-upgrade/UpgradeInternals.h b/tools/llvm-upgrade/UpgradeInternals.h index 71629534a11..bbf67378282 100644 --- a/tools/llvm-upgrade/UpgradeInternals.h +++ b/tools/llvm-upgrade/UpgradeInternals.h @@ -216,7 +216,8 @@ enum CastOps { // An enumeration for the old calling conventions, ala LLVM 1.9 namespace OldCallingConv { enum ID { - C = 0, CSRet = 1, Fast = 8, Cold = 9, X86_StdCall = 64, X86_FastCall = 65 + C = 0, CSRet = 1, Fast = 8, Cold = 9, X86_StdCall = 64, X86_FastCall = 65, + None = 99999 }; } @@ -234,7 +235,7 @@ struct TypeInfo { }; struct PATypeInfo { - llvm::PATypeHolder* T; + llvm::PATypeHolder* PAT; Signedness S; };