From: Eric Christopher Date: Thu, 14 May 2015 22:29:46 +0000 (+0000) Subject: Reflow comments and remove one that predated the enum being in X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=33a0cf6c56c34e32b70a1a4930d90bff883e9bb3;p=oota-llvm.git Reflow comments and remove one that predated the enum being in the current file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237399 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index 205bd3dc7d1..d70fe94a9bb 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -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. }; }