About Social Code
aboutsummaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c')
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c13
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