Reflow comments and remove one that predated the enum being in
authorEric Christopher <echristo@gmail.com>
Thu, 14 May 2015 22:29:46 +0000 (22:29 +0000)
committerEric Christopher <echristo@gmail.com>
Thu, 14 May 2015 22:29:46 +0000 (22:29 +0000)
the current file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237399 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetOptions.h

index 205bd3dc7d1323fb533bc242730c98af48f80ee3..d70fe94a9bb280af58737a4030c8d8c985381f71 100644 (file)
@@ -22,12 +22,11 @@ namespace llvm {
   class MachineFunction;
   class StringRef;
 
-  // Possible float ABI settings. Used with FloatABIType in TargetOptions.h.
   namespace FloatABI {
     enum ABIType {
-      Default, // Target-specific (either soft or hard depending on triple,etc).
-      Soft, // Soft float.
-      Hard  // Hard float.
+      Default, // Target-specific (either soft or hard depending on triple, etc).
+      Soft,    // Soft float.
+      Hard     // Hard float.
     };
   }