summaryrefslogtreecommitdiff
path: root/orc-test
AgeCommit message (Collapse)AuthorFilesLines
2014-06-27orcarray: Use size_t for pointer arithmeticsEdward Hervey1-1/+1
Fixes these warnings on windows x86_64: orcarray.c:80:33: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] orcarray.c:80:22: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
2014-06-23build: Modernize autotools build systemSebastian Dröge1-3/+1
2014-05-19orcarray: Use fabs() instead of abs(), the latter is for integersSebastian Dröge1-1/+1
orcarray.c:254:15: error: using integer absolute value function 'abs' when argument is of floating point type [-Werror,-Wabsolute-value] if (abs(a[i] - b[i]) < MIN_NONDENORMAL_D) continue;
2014-04-14orcarray: Fix compiler warning with gcc 4.9Sebastian Dröge1-1/+2
In file included from ../orc/orcprogram.h:5:0, from ../orc/orc.h:5, from ../orc-test/orctest.h:5, from orcarray.c:6: ../orc/orcutils.h:124:37: error: 'data' may be used uninitialized in this function [-Werror=maybe-uninitialized] #define ORC_PTR_OFFSET(ptr,offset) ((void *)(((unsigned char *)(ptr)) + (offset))) ^ orcarray.c:42:9: note: 'data' was declared here void *data;
2013-10-14Make it ANSI-COlivier Crête3-10/+10
Use /* */ instead of // Define _GNU_SOURCE in the ORC_CFLAGS
2013-05-27orc-test: Fix typo in #ifdefSebastian Dröge1-1/+1
2013-02-19test: Fix recent commitDavid Schleef2-7/+11
Separate allocated data and aligned data.
2013-02-19test: Use the aligned pointer, not something elseDavid Schleef1-2/+1
2012-12-28mips: added copyright headersGuillaume Emont1-0/+26
2012-12-28mips: added test for binary code generationGuillaume Emont2-0/+97
2012-04-01test: allocate aligned memory on windowsDavid Schleef1-3/+5
2011-10-15test: fix unused variable warningDavid Schleef1-1/+1
2011-10-02test: Add (disabled) ability to test 64-bit pointersDavid Schleef1-1/+30
2011-10-02test: disable complaints about codegen failuresDavid Schleef1-4/+4
2011-09-24Fix up c64x-c backendDavid Schleef1-2/+3
2011-07-09Move ORC_GNUC_UNUSED to orcutils.h and use itDavid Schleef1-6/+0
2011-07-09Fix a bunch of unused-but-set-variable compiler warnings with gcc 4.6Tim-Philipp Müller1-4/+10
Which cause compilation with -Werror to fail.
2011-05-31test: add msvc define for snprintfDavid Schleef1-0/+1
2011-05-16tests: Handle new modifiersDavid Schleef3-9/+15
2011-05-13tests: print error message in test failuresDavid Schleef1-0/+5
2011-04-25orctest: check return values of snprintfDavid Schleef1-14/+25
Please someone shoot c89.
2011-04-25test: ignore diffs due to change in jmp sizesDavid Schleef1-2/+2
2010-09-23test: Add disabled code to make manual testing easierDavid Schleef1-0/+8
2010-09-08orc-test: Fix comparison of 64-bit typesDavid Schleef1-5/+5
2010-09-08Add ORC_TARGET_CLEAN_COMPILE and use itDavid Schleef1-1/+5
2010-09-06Eliminate usage of %lld, etc.David Schleef1-3/+6
2010-09-04test: disabled unused codeDavid Schleef1-0/+2
2010-09-03Add -version-info to libsDavid Schleef1-0/+1
2010-09-02Fix static linkingDavid Schleef1-4/+4
2010-08-26Add int64 and double parametersDavid Schleef1-4/+13
2010-08-26Add support for comparing double arraysSebastian Dröge1-15/+35
2010-08-25Fix testing of float paramsDavid Schleef1-1/+5
2010-08-25Check for posix_memalign()David Schleef1-0/+6
2010-08-25test: Add denormal array patternDavid Schleef2-0/+15
2010-08-24Use OrcCode structure to handle all executable codeDavid Schleef1-5/+12
2010-08-22test: Add special patterns (for floats)David Schleef2-0/+98
2010-08-20Update documentation, add tutorialDavid Schleef1-22/+40
2010-08-19Add perf testing of emulated codeDavid Schleef2-0/+5
2010-08-19Fix printing of performance data in testsDavid Schleef1-4/+9
2010-08-18test: Improve opcode test program generationDavid Schleef1-29/+71
2010-08-17test: Add alignment and misalignment to arraysDavid Schleef3-11/+34
This causes most of the performance tests to slow down significantly, but is a more realistic measurement of actual performance.
2010-08-12test: Remove #undef so it can be overridden in CFLAGSDavid Schleef1-1/+1
2010-08-12test: Decrease n for performance testingDavid Schleef1-1/+1
2010-08-11Fix segfault in test programsDavid Schleef1-2/+6
Emulation requires that the program be compiled.
2010-08-03test: Add disabled code for Cortex-A8 benchmarkingDavid Schleef1-0/+20
2010-08-01Add performance comparison testsDavid Schleef2-7/+16
2010-07-09test: remove adjustment of performance numberDavid Schleef1-1/+1
2010-07-09test: switch neon test back to neonDavid Schleef1-1/+1
2010-06-30arm: arm backend code gen fixesDavid Schleef1-1/+1
2010-06-28tests: better float comparisonDavid Schleef2-7/+35
Allow denormals to be flushed to 0. Check for NaNs.