Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@mozilla.com>2011-11-30 22:28:35 +0400
committerRalph Giles <giles@mozilla.com>2012-03-06 05:09:54 +0400
commit9f7d17bd118892208591379aaf8a45a3e2c1a736 (patch)
tree75ced0eaeea21598a32ee2f96d935d94b378ef68 /celt/fixed_debug.h
parent5c06f8c585e6c1a8ee206ff02f19613046ed8aeb (diff)
Uncomment the reporting for UADD32 and USUB32 in fixed_debug.h.
Diffstat (limited to 'celt/fixed_debug.h')
-rw-r--r--celt/fixed_debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/celt/fixed_debug.h b/celt/fixed_debug.h
index 311858da..1400ec91 100644
--- a/celt/fixed_debug.h
+++ b/celt/fixed_debug.h
@@ -269,12 +269,12 @@ static inline unsigned int USUB32_(unsigned long long a, unsigned long long b, c
unsigned long long res;
if (!VERIFY_UINT(a) || !VERIFY_UINT(b))
{
- /*fprintf (stderr, "USUB32: inputs are not int: %llu %llu in %s: line %d\n", (unsigned)a, (unsigned)b, file, line);*/
+ fprintf (stderr, "USUB32: inputs are not int: %llu %llu in %s: line %d\n", (unsigned)a, (unsigned)b, file, line);
}
res = a-b;
if (!VERIFY_UINT(res))
{
- /*fprintf (stderr, "USUB32: output is not int: %llu - %llu = %llu in %s: line %d\n", a, b, res, file, line);*/
+ fprintf (stderr, "USUB32: output is not int: %llu - %llu = %llu in %s: line %d\n", a, b, res, file, line);
}
celt_mips+=2;
return res;