summaryrefslogtreecommitdiff
path: root/config/cpu/alpha/cycles.h
diff options
context:
space:
mode:
Diffstat (limited to 'config/cpu/alpha/cycles.h')
-rw-r--r--config/cpu/alpha/cycles.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/config/cpu/alpha/cycles.h b/config/cpu/alpha/cycles.h
index dccbd04..7e2cf17 100644
--- a/config/cpu/alpha/cycles.h
+++ b/config/cpu/alpha/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__
@@ -27,7 +27,8 @@ typedef unsigned int cycles_t;
static inline cycles_t get_cycles (void)
{
cycles_t ret;
- __asm__ __volatile__ ("rpcc %0" : "=r"(ret));
+
+ __asm__ __volatile__ ("rpcc %0" : "=r" (ret));
return ret;
}