[llvm-commits] [llvm] r168936 - /llvm/trunk/include/llvm/Target/TargetOptions.h

Chad Rosier mcrosier at apple.com
Thu Nov 29 12:56:58 PST 2012


Author: mcrosier
Date: Thu Nov 29 14:56:58 2012
New Revision: 168936

URL: http://llvm.org/viewvc/llvm-project?rev=168936&view=rev
Log:
Fix 80-column violations.

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

Modified: llvm/trunk/include/llvm/Target/TargetOptions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetOptions.h?rev=168936&r1=168935&r2=168936&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetOptions.h (original)
+++ llvm/trunk/include/llvm/Target/TargetOptions.h Thu Nov 29 14:56:58 2012
@@ -24,7 +24,7 @@
   // 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).
+      Default, // Target-specific (either soft or hard depending on triple,etc).
       Soft, // Soft float.
       Hard  // Hard float.
     };
@@ -50,7 +50,7 @@
           GuaranteedTailCallOpt(false), DisableTailCalls(false),
           StackAlignmentOverride(0), RealignStack(true), EnableFastISel(false),
           PositionIndependentExecutable(false), EnableSegmentedStacks(false),
-          UseInitArray(false), TrapFuncName(""), FloatABIType(FloatABI::Default),
+          UseInitArray(false), TrapFuncName(""),FloatABIType(FloatABI::Default),
           AllowFPOpFusion(FPOpFusion::Standard)
     {}
 
@@ -202,10 +202,10 @@
     /// Strict mode - allow fusion only if/when it can be proven that the excess
     /// precision won't effect the result.
     ///
-    /// Note: This option only controls formation of fused ops by the optimizers.
-    /// Fused operations that are explicitly specified (e.g. FMA via the
-    /// llvm.fma.* intrinsic) will always be honored, regardless of the value of
-    /// this option.
+    /// Note: This option only controls formation of fused ops by the
+    /// optimizers.  Fused operations that are explicitly specified (e.g. FMA
+    /// via the llvm.fma.* intrinsic) will always be honored, regardless of
+    ///  the value of this option.
     FPOpFusion::FPOpFusionMode AllowFPOpFusion;
 
   };





More information about the llvm-commits mailing list