diff options
| author | Mike Stump <mrs@apple.com> | 2009-05-13 23:23:20 +0000 |
|---|---|---|
| committer | Mike Stump <mrs@apple.com> | 2009-05-13 23:23:20 +0000 |
| commit | 889285d4677e7cbe8940418fc4813e762d4c2cd9 (patch) | |
| tree | 9707db37c01262c0b3a7402253c8df4ee01b3ffa /llvm/lib/Support/APFloat.cpp | |
| parent | 9e87721d47fdfb093050dc2318f3c9a956051299 (diff) | |
| download | llvm-889285d4677e7cbe8940418fc4813e762d4c2cd9.zip llvm-889285d4677e7cbe8940418fc4813e762d4c2cd9.tar.gz llvm-889285d4677e7cbe8940418fc4813e762d4c2cd9.tar.bz2 | |
Fix whitespacing (space after switch).
llvm-svn: 71738
Diffstat (limited to 'llvm/lib/Support/APFloat.cpp')
| -rw-r--r-- | llvm/lib/Support/APFloat.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Support/APFloat.cpp b/llvm/lib/Support/APFloat.cpp index 2ee6a27..4c79ba6 100644 --- a/llvm/lib/Support/APFloat.cpp +++ b/llvm/lib/Support/APFloat.cpp @@ -1060,7 +1060,7 @@ APFloat::roundAwayFromZero(roundingMode rounding_mode, /* Current callers never pass this so we don't handle it. */ assert(lost_fraction != lfExactlyZero); - switch(rounding_mode) { + switch (rounding_mode) { default: assert(0); @@ -1199,7 +1199,7 @@ APFloat::normalize(roundingMode rounding_mode, APFloat::opStatus APFloat::addOrSubtractSpecials(const APFloat &rhs, bool subtract) { - switch(convolve(category, rhs.category)) { + switch (convolve(category, rhs.category)) { default: assert(0); @@ -1323,7 +1323,7 @@ APFloat::addOrSubtractSignificand(const APFloat &rhs, bool subtract) APFloat::opStatus APFloat::multiplySpecials(const APFloat &rhs) { - switch(convolve(category, rhs.category)) { + switch (convolve(category, rhs.category)) { default: assert(0); @@ -1365,7 +1365,7 @@ APFloat::multiplySpecials(const APFloat &rhs) APFloat::opStatus APFloat::divideSpecials(const APFloat &rhs) { - switch(convolve(category, rhs.category)) { + switch (convolve(category, rhs.category)) { default: assert(0); @@ -1407,7 +1407,7 @@ APFloat::divideSpecials(const APFloat &rhs) APFloat::opStatus APFloat::modSpecials(const APFloat &rhs) { - switch(convolve(category, rhs.category)) { + switch (convolve(category, rhs.category)) { default: assert(0); @@ -1684,7 +1684,7 @@ APFloat::compare(const APFloat &rhs) const assertArithmeticOK(*semantics); assert(semantics == rhs.semantics); - switch(convolve(category, rhs.category)) { + switch (convolve(category, rhs.category)) { default: assert(0); |
