[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPC.td

Evan Cheng evan.cheng at apple.com
Fri Jan 27 00:09:57 PST 2006



Changes in directory llvm/lib/Target/PowerPC:

PPC.td updated: 1.10 -> 1.11
---
Log message:

Subtarget feature can now set any variable to any value

---
Diffs of the changes:  (+5 -5)

 PPC.td |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


Index: llvm/lib/Target/PowerPC/PPC.td
diff -u llvm/lib/Target/PowerPC/PPC.td:1.10 llvm/lib/Target/PowerPC/PPC.td:1.11
--- llvm/lib/Target/PowerPC/PPC.td:1.10	Wed Oct 26 12:28:23 2005
+++ llvm/lib/Target/PowerPC/PPC.td	Fri Jan 27 02:09:42 2006
@@ -19,15 +19,15 @@
 // PowerPC Subtarget features.
 //
  
-def Feature64Bit     : SubtargetFeature<"64bit", "bool", "Is64Bit",
+def Feature64Bit     : SubtargetFeature<"64bit","Is64Bit", "true",
                                         "Enable 64-bit instructions">;
-def Feature64BitRegs : SubtargetFeature<"64bitregs", "bool", "Has64BitRegs",
+def Feature64BitRegs : SubtargetFeature<"64bitregs","Has64BitRegs", "true",
                                         "Enable 64-bit registers [beta]">;
-def FeatureAltivec   : SubtargetFeature<"altivec", "bool", "HasAltivec",
+def FeatureAltivec   : SubtargetFeature<"altivec","HasAltivec", "true",
                                         "Enable Altivec instructions">;
-def FeatureGPUL      : SubtargetFeature<"gpul", "bool", "IsGigaProcessor",
+def FeatureGPUL      : SubtargetFeature<"gpul","IsGigaProcessor", "true",
                                         "Enable GPUL instructions">;
-def FeatureFSqrt     : SubtargetFeature<"fsqrt", "bool", "HasFSQRT",
+def FeatureFSqrt     : SubtargetFeature<"fsqrt","HasFSQRT", "true",
                                         "Enable the fsqrt instruction">; 
 
 //===----------------------------------------------------------------------===//






More information about the llvm-commits mailing list