[llvm-commits] [llvm] r73430 - /llvm/trunk/include/llvm/Target/TargetMachine.h

Anton Korobeynikov asl at math.spbu.ru
Mon Jun 15 15:08:48 PDT 2009


Author: asl
Date: Mon Jun 15 17:08:48 2009
New Revision: 73430

URL: http://llvm.org/viewvc/llvm-project?rev=73430&view=rev
Log:
Address more comments :)

Modified:
    llvm/trunk/include/llvm/Target/TargetMachine.h

Modified: llvm/trunk/include/llvm/Target/TargetMachine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetMachine.h?rev=73430&r1=73429&r2=73430&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Target/TargetMachine.h (original)
+++ llvm/trunk/include/llvm/Target/TargetMachine.h Mon Jun 15 17:08:48 2009
@@ -79,13 +79,12 @@
 }
 
 
-// Possible float ABI settings. Soft is soft float, Hard is hard float, Default
-// is target-specific. Used with FloatABIType in TargetOptions.h.
+// Possible float ABI settings. Used with FloatABIType in TargetOptions.h.
 namespace FloatABI {
   enum ABIType {
-    Default,
-    Soft,
-    Hard
+    Default, // Target-specific (either soft of hard depending on triple, etc).
+    Soft, // Soft float.
+    Hard  // Hard float.
   };
 }
 





More information about the llvm-commits mailing list