(svn r4218) - Codechange: Try to make the rdtsc() not present warning message a bit more clear
authorDarkvater
Fri, 31 Mar 2006 21:13:53 +0000
changeset 3407 eb0845aa1db7
parent 3406 514eef372355
child 3408 313f35564673
(svn r4218) - Codechange: Try to make the rdtsc() not present warning message a bit more clear
os_timer.c
--- a/os_timer.c	Fri Mar 31 21:06:55 2006 +0000
+++ b/os_timer.c	Fri Mar 31 21:13:53 2006 +0000
@@ -65,6 +65,6 @@
 /* In all other cases we have no support for rdtsc. No major issue,
  * you just won't be able to profile your code with TIC()/TOC() */
 #if !defined(RDTSC_AVAILABLE)
-#warning "OS has no support for rdtsc()"
+#warning "(non-fatal) No support for rdtsc(), you won't be able to profile with TIC/TOC"
 uint64 _rdtsc(void) {return 0;}
 #endif