diff options
| author | spencer-lunarg <spencer@lunarg.com> | 2025-11-02 20:47:54 -0500 |
|---|---|---|
| committer | Marge Bot <marge-bot@fdo.invalid> | 2025-11-06 22:39:33 +0000 |
| commit | 171581aeae1add828359c2d87fda72023bb4d641 (patch) | |
| tree | 04811c7d7eef3c825608f04311ab03bf4a9ccd6e /src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c | |
| parent | af872180e197a9e2a1e73f742d2902ab5ed61dab (diff) | |
llvmpipe: Remove trailing whitespace
Signed-off-by: spencer-lunarg <spencer@lunarg.com>
Acked-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38202>
Diffstat (limited to 'src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c')
| -rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c b/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c index ff5d020259e..3bf00faf538 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c @@ -54,7 +54,6 @@ #include <float.h> - static LLVMValueRef build_binary_int_overflow(struct gallivm_state *gallivm, const char *intr_prefix, @@ -103,7 +102,7 @@ build_binary_int_overflow(struct gallivm_state *gallivm, } /** - * Performs unsigned addition of two integers and reports + * Performs unsigned addition of two integers and reports * overflow if detected. * * The values @a and @b must be of the same integer type. If @@ -113,7 +112,7 @@ build_binary_int_overflow(struct gallivm_state *gallivm, * - if it's pointing to a valid value, then that variable, * which must be of i1 type, is ORed with the newly detected * overflow bit. This is done to allow chaining of a number of - * overflow functions together without having to test the + * overflow functions together without having to test the * overflow bit after every single one. */ LLVMValueRef @@ -127,7 +126,7 @@ lp_build_uadd_overflow(struct gallivm_state *gallivm, } /** - * Performs unsigned subtraction of two integers and reports + * Performs unsigned subtraction of two integers and reports * overflow if detected. * * The values @a and @b must be of the same integer type. If @@ -137,7 +136,7 @@ lp_build_uadd_overflow(struct gallivm_state *gallivm, * - if it's pointing to a valid value, then that variable, * which must be of i1 type, is ORed with the newly detected * overflow bit. This is done to allow chaining of a number of - * overflow functions together without having to test the + * overflow functions together without having to test the * overflow bit after every single one. */ LLVMValueRef @@ -151,7 +150,7 @@ lp_build_usub_overflow(struct gallivm_state *gallivm, } /** - * Performs unsigned multiplication of two integers and + * Performs unsigned multiplication of two integers and * reports overflow if detected. * * The values @a and @b must be of the same integer type. If @@ -161,7 +160,7 @@ lp_build_usub_overflow(struct gallivm_state *gallivm, * - if it's pointing to a valid value, then that variable, * which must be of i1 type, is ORed with the newly detected * overflow bit. This is done to allow chaining of a number of - * overflow functions together without having to test the + * overflow functions together without having to test the * overflow bit after every single one. */ LLVMValueRef |