summaryrefslogtreecommitdiff
path: root/orc-test
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2013-10-14 15:25:14 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2013-10-14 15:29:02 -0400
commit07c01cafbbfd4c18bd63f644946fd6ce7b384280 (patch)
treeb4462297e18c8b9ca311141f63b5bdce8c8a8f04 /orc-test
parent7f7ad3f2bf2208438968b845754e313a6821794a (diff)
Make it ANSI-C
Use /* */ instead of // Define _GNU_SOURCE in the ORC_CFLAGS
Diffstat (limited to 'orc-test')
-rw-r--r--orc-test/orcarray.c2
-rw-r--r--orc-test/orcprofile.c2
-rw-r--r--orc-test/orctest.c16
3 files changed, 10 insertions, 10 deletions
diff --git a/orc-test/orcarray.c b/orc-test/orcarray.c
index 2ee6bbf..9860204 100644
--- a/orc-test/orcarray.c
+++ b/orc-test/orcarray.c
@@ -21,7 +21,7 @@
#ifdef HAVE_MMAP
/* This can be used to test non-zero high-32-bits of pointers. */
-//#define USE_MMAP
+/* #define USE_MMAP */
#endif
#define EXTEND_ROWS 16
diff --git a/orc-test/orcprofile.c b/orc-test/orcprofile.c
index 85de41b..c4e4f5b 100644
--- a/orc-test/orcprofile.c
+++ b/orc-test/orcprofile.c
@@ -173,7 +173,7 @@ oil_profile_stamp_default (void)
return ts;
#elif defined(__GNUC__) && defined(HAVE_ARM) && defined(USE_CORTEX_A8_COUNTER)
unsigned int ts;
- //__asm__ __volatile__(" mrc p14, 0, %0, c1, c0, 0 \n" : "=r" (ts));
+ /* __asm__ __volatile__(" mrc p14, 0, %0, c1, c0, 0 \n" : "=r" (ts)); */
__asm__ __volatile__(" mrc p15, 0, %0, c9, c13, 0 \n" : "=r" (ts));
return ts;
#elif defined(_MSC_VER) && defined(HAVE_I386)
diff --git a/orc-test/orctest.c b/orc-test/orctest.c
index a19388e..ef4e6ed 100644
--- a/orc-test/orctest.c
+++ b/orc-test/orctest.c
@@ -109,7 +109,7 @@ orc_test_gcc_compile (OrcProgram *p)
return ORC_TEST_FAILED;
}
if (!ORC_COMPILE_RESULT_IS_SUCCESSFUL(result)) {
- //printf (" no code generated: %s\n", orc_program_get_error (p));
+ /* printf (" no code generated: %s\n", orc_program_get_error (p)); */
return ORC_TEST_INDETERMINATE;
}
@@ -232,7 +232,7 @@ orc_test_gcc_compile_neon (OrcProgram *p)
result = orc_program_compile_full (p, target, flags);
if (!ORC_COMPILE_RESULT_IS_SUCCESSFUL(result)) {
- //printf (" no code generated: %s\n", orc_program_get_error (p));
+ /* printf (" no code generated: %s\n", orc_program_get_error (p)); */
return ORC_TEST_INDETERMINATE;
}
@@ -326,7 +326,7 @@ orc_test_gcc_compile_c64x (OrcProgram *p)
result = orc_program_compile_full (p, target, flags);
if (!ORC_COMPILE_RESULT_IS_SUCCESSFUL(result)) {
- //printf (" no code generated: %s\n", orc_program_get_error (p));
+ /* printf (" no code generated: %s\n", orc_program_get_error (p)); */
return ORC_TEST_INDETERMINATE;
}
@@ -346,7 +346,7 @@ orc_test_gcc_compile_c64x (OrcProgram *p)
ret = system (cmd);
if (ret != 0) {
ORC_ERROR ("compiler failed");
- //printf("%s\n", orc_program_get_asm_code (p));
+ /* printf("%s\n", orc_program_get_asm_code (p)); */
return ORC_TEST_INDETERMINATE;
}
@@ -585,7 +585,7 @@ orc_test_compare_output_full (OrcProgram *program, int flags)
goto out;
}
if (!ORC_COMPILE_RESULT_IS_SUCCESSFUL(result)) {
- //printf (" no code generated: %s\n", orc_program_get_error (program));
+ /* printf (" no code generated: %s\n", orc_program_get_error (program)); */
ret = ORC_TEST_INDETERMINATE;
goto out;
}
@@ -985,7 +985,7 @@ orc_test_performance_full (OrcProgram *program, int flags,
result = orc_program_compile_full (program, target, flags);
if (!ORC_COMPILE_RESULT_IS_SUCCESSFUL(result)) {
- //printf("compile failed\n");
+ /* printf("compile failed\n"); */
orc_program_reset (program);
return 0;
}
@@ -994,7 +994,7 @@ orc_test_performance_full (OrcProgram *program, int flags,
if (program->constant_n > 0) {
n = program->constant_n;
} else {
- //n = 64 + (orc_random(&rand_context)&0xf);
+ /* n = 64 + (orc_random(&rand_context)&0xf); */
n = 1000;
}
@@ -1113,7 +1113,7 @@ orc_test_gcc_compile_mips (OrcProgram *p)
result = orc_program_compile_full (p, target, flags);
if (!ORC_COMPILE_RESULT_IS_SUCCESSFUL(result)) {
- //printf (" no code generated: %s\n", orc_program_get_error (p));
+ /* printf (" no code generated: %s\n", orc_program_get_error (p)); */
return ORC_TEST_INDETERMINATE;
}