From 33a0cf6c56c34e32b70a1a4930d90bff883e9bb3 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Thu, 14 May 2015 22:29:46 +0000 Subject: [PATCH] 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 --- include/llvm/Target/TargetOptions.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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. }; }