[pstl] Declare main() as returning int, not int32_t
authorLouis Dionne <ldionne@apple.com>
Thu, 18 Jul 2019 20:21:52 +0000 (20:21 +0000)
committerLouis Dionne <ldionne@apple.com>
Thu, 18 Jul 2019 20:21:52 +0000 (20:21 +0000)
llvm-svn: 366490

59 files changed:
pstl/test/pstl/header_inclusion_order_algorithm_0.pass.cpp
pstl/test/pstl/header_inclusion_order_algorithm_1.pass.cpp
pstl/test/pstl/header_inclusion_order_memory_0.pass.cpp
pstl/test/pstl/header_inclusion_order_memory_1.pass.cpp
pstl/test/pstl/header_inclusion_order_numeric_0.pass.cpp
pstl/test/pstl/header_inclusion_order_numeric_1.pass.cpp
pstl/test/std/algorithms/alg.merge/inplace_merge.pass.cpp
pstl/test/std/algorithms/alg.merge/merge.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/partition.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/alg.reverse/reverse.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/alg.reverse/reverse_copy.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/copy_move.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/fill.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/generate.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/remove.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/remove_copy.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/replace.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/replace_copy.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/rotate.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/rotate_copy.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/swap_ranges.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/transform_binary.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/transform_unary.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/unique.pass.cpp
pstl/test/std/algorithms/alg.modifying.operations/unique_copy_equal.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/adjacent_find.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/all_of.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/any_of.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/count.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/equal.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/find_end.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/find_first_of.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/find_if.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/for_each.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/mismatch.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/none_of.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/nth_element.pass.cpp
pstl/test/std/algorithms/alg.nonmodifying/search_n.pass.cpp
pstl/test/std/algorithms/alg.sorting/alg.heap.operations/is_heap.pass.cpp
pstl/test/std/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare.pass.cpp
pstl/test/std/algorithms/alg.sorting/alg.min.max/minmax_element.pass.cpp
pstl/test/std/algorithms/alg.sorting/alg.set.operations/includes.pass.cpp
pstl/test/std/algorithms/alg.sorting/alg.set.operations/set.pass.cpp
pstl/test/std/algorithms/alg.sorting/is_sorted.pass.cpp
pstl/test/std/algorithms/alg.sorting/partial_sort.pass.cpp
pstl/test/std/algorithms/alg.sorting/partial_sort_copy.pass.cpp
pstl/test/std/algorithms/alg.sorting/sort.pass.cpp
pstl/test/std/numerics/numeric.ops/adjacent_difference.pass.cpp
pstl/test/std/numerics/numeric.ops/reduce.pass.cpp
pstl/test/std/numerics/numeric.ops/scan.pass.cpp
pstl/test/std/numerics/numeric.ops/transform_reduce.pass.cpp
pstl/test/std/numerics/numeric.ops/transform_scan.pass.cpp
pstl/test/std/utilities/memory/specialized.algorithms/uninitialized_construct.pass.cpp
pstl/test/std/utilities/memory/specialized.algorithms/uninitialized_copy_move.pass.cpp
pstl/test/std/utilities/memory/specialized.algorithms/uninitialized_fill_destroy.pass.cpp

index a7aa2e7..64433c8 100644 (file)
@@ -134,7 +134,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test_by_type<float64_t>([](int32_t i) { return -2 * i; }, [](int32_t i) { return -(2 * i + 1); },
index 6d7027c..56b557c 100644 (file)
@@ -96,7 +96,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test_merge_by_type<int32_t>([](size_t v) { return (v % 2 == 0 ? v : -v) * 3; }, [](size_t v) { return v * 2; });
index 7e5337b..62eb7f6 100644 (file)
@@ -123,7 +123,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test<float64_t>(-666.0, [](const float64_t& x) { return x * x <= 1024; },
index 7bd2444..668f970 100644 (file)
@@ -117,7 +117,7 @@ test()
     }
 }
 
-int32_t
+int
 main()
 {
     // clang-3.8 fails to correctly auto vectorize the loop in some cases of different types of container's elements,
index 1ef1a9c..8aa616e 100644 (file)
@@ -185,7 +185,7 @@ test(T trash, Convert convert)
     }
 }
 
-int32_t
+int
 main()
 {
     test<int32_t>(-666, [](size_t j) { return int32_t(j); });
index 760cb3a..5d17157 100644 (file)
@@ -82,7 +82,7 @@ test_fill_by_type(std::size_t n)
     invoke_on_all_policies(test_fill_n(), in.begin(), n, value);
 }
 
-int32_t
+int
 main()
 {
 
index 96b1691..963ff12 100644 (file)
@@ -145,7 +145,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test<int32_t, float32_t>(__pstl::__internal::__equal_value<int32_t>(666));
index cde4751..97e4144 100644 (file)
@@ -100,7 +100,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test<int32_t>(8 * sizeof(int32_t));
index c06dc40..1430de9 100644 (file)
@@ -86,7 +86,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test<int32_t>(8 * sizeof(int32_t));
index f40d59c..7ec77f3 100644 (file)
@@ -90,7 +90,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test<int32_t>(42, IsEqual<int32_t>(50, OddTag()), [](int32_t j) { return j; });
index a5c2130..d6bcadb 100644 (file)
@@ -80,7 +80,7 @@ class Weird
     Weird(int32_t val, OddTag) : value(val, OddTag()) {}
 };
 
-int32_t
+int
 main()
 {
     // Note that the "hit" and "miss" functions here avoid overflow issues.
index a24d82a..b6a60f0 100644 (file)
@@ -106,7 +106,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test<int32_t>(8 * sizeof(int32_t));
index 947b0f5..5bafbbc 100644 (file)
@@ -89,7 +89,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
 #if !_PSTL_ICC_17_TEST_MAC_RELEASE_32_BROKEN
index de1d651..e84de3c 100644 (file)
@@ -84,7 +84,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test<int32_t>(8 * sizeof(int32_t));
index c620450..49cf28b 100644 (file)
@@ -156,7 +156,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test_by_type<int32_t>([](int32_t i) { return 10 * i; }, [](int32_t i) { return i + 1; }, std::less<int32_t>());
index a27dc62..55b1d04 100644 (file)
@@ -178,7 +178,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     test_partial_sort_copy<Num<float32_t>>([](Num<float32_t> x, Num<float32_t> y) { return x < y; });
index 74a071b..7280dfb 100644 (file)
@@ -224,7 +224,7 @@ struct test_non_const
     }
 };
 
-int32_t
+int
 main()
 {
     std::srand(42);
index 74c4c81..d77f2c1 100644 (file)
@@ -156,7 +156,7 @@ test(Pred pred)
     }
 }
 
-int32_t
+int
 main()
 {
     test<uint8_t, uint32_t>([](uint32_t a, uint32_t b) { return a - b; });
index 78f6fab..743208f 100644 (file)
@@ -97,7 +97,7 @@ test_short_forms()
     }
 }
 
-int32_t
+int
 main()
 {
     // Test for popular types
index 6b1bebc..4b422dc 100644 (file)
@@ -180,7 +180,7 @@ test_matrix(Out init, BinaryOp binary_op, Out trash)
     }
 }
 
-int32_t
+int
 main()
 {
     for (int32_t mode = 0; mode < 2; ++mode)
index 1c905d6..c4317c4 100644 (file)
@@ -116,7 +116,7 @@ test_by_type(T init, BinaryOperation1 opB1, BinaryOperation2 opB2, UnaryOp opU,
     }
 }
 
-int32_t
+int
 main()
 {
     test_by_type<int32_t>(42, std::plus<int32_t>(), std::multiplies<int32_t>(), std::negate<int32_t>(),
index ddf18eb..c9475c9 100644 (file)
@@ -160,7 +160,7 @@ test_matrix(UnaryOp unary_op, Out init, BinaryOp binary_op, Out trash)
     }
 }
 
-int32_t
+int
 main()
 {
     for (int32_t mode = 0; mode < 2; ++mode)