1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix 80-column violation in previous commit.

llvm-svn: 299257
This commit is contained in:
Stephen Canon 2017-03-31 20:35:02 +00:00
parent dc865d22d7
commit aadb07a152

View File

@ -3258,7 +3258,8 @@ TEST(APFloatTest, mod) {
TEST(APFloatTest, PPCDoubleDoubleAddSpecial) {
using DataType = std::tuple<uint64_t, uint64_t, uint64_t, uint64_t,
APFloat::fltCategory, APFloat::roundingMode>; DataType Data[] = {
APFloat::fltCategory, APFloat::roundingMode>;
DataType Data[] = {
// (1 + 0) + (-1 + 0) = fcZero
std::make_tuple(0x3ff0000000000000ull, 0, 0xbff0000000000000ull, 0,
APFloat::fcZero, APFloat::rmNearestTiesToEven),