summaryrefslogtreecommitdiff
path: root/config/cpu/i386/cycles.h
diff options
context:
space:
mode:
Diffstat (limited to 'config/cpu/i386/cycles.h')
-rw-r--r--config/cpu/i386/cycles.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/config/cpu/i386/cycles.h b/config/cpu/i386/cycles.h
index f90c445..4a26560 100644
--- a/config/cpu/i386/cycles.h
+++ b/config/cpu/i386/cycles.h
@@ -1,7 +1,7 @@
/*
Copyright (C) 2001 Paul Davis
Code derived from various headers from the Linux kernel
-
+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
@@ -16,7 +16,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-*/
+ */
#ifndef __jack_cycles_h__
#define __jack_cycles_h__
@@ -26,7 +26,8 @@ typedef unsigned long long cycles_t;
static inline cycles_t get_cycles (void)
{
unsigned long long ret;
- __asm__ __volatile__("rdtsc" : "=A" (ret));
+
+ __asm__ __volatile__ ("rdtsc" : "=A" (ret));
return ret;
}