[llvm-commits] CVS: llvm/tools/llvm-upgrade/UpgradeInternals.h

Reid Spencer reid at x10sys.com
Thu Feb 8 01:08:39 PST 2007



Changes in directory llvm/tools/llvm-upgrade:

UpgradeInternals.h updated: 1.8 -> 1.9
---
Log message:

Rename a field so there's less confusion between fields of the same name.


---
Diffs of the changes:  (+3 -2)

 UpgradeInternals.h |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)


Index: llvm/tools/llvm-upgrade/UpgradeInternals.h
diff -u llvm/tools/llvm-upgrade/UpgradeInternals.h:1.8 llvm/tools/llvm-upgrade/UpgradeInternals.h:1.9
--- llvm/tools/llvm-upgrade/UpgradeInternals.h:1.8	Thu Feb  1 20:16:22 2007
+++ llvm/tools/llvm-upgrade/UpgradeInternals.h	Thu Feb  8 03:08:23 2007
@@ -216,7 +216,8 @@
 // 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 PATypeInfo {
-  llvm::PATypeHolder* T;
+  llvm::PATypeHolder* PAT;
   Signedness S;
 };
 






More information about the llvm-commits mailing list