Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 32716
b: refs/heads/master
c: 53ba5e0
h: refs/heads/master
v: v3
  • Loading branch information
Andreas Krebbel authored and Martin Schwidefsky committed Jul 17, 2006
1 parent 948baa5 commit 4c9866b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 13ffa927abb74d4365b0e22f186befe4746b5897
refs/heads/master: 53ba5e09fe37518683ff8b3f28410ce0b9ed2f74
4 changes: 2 additions & 2 deletions trunk/include/asm-s390/timex.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ static inline cycles_t get_cycles(void)
{
cycles_t cycles;

__asm__("stck 0(%1)" : "=m" (cycles) : "a" (&cycles) : "cc");
__asm__ __volatile__ ("stck 0(%1)" : "=m" (cycles) : "a" (&cycles) : "cc");
return cycles >> 2;
}

static inline unsigned long long get_clock (void)
{
unsigned long long clk;

__asm__("stck 0(%1)" : "=m" (clk) : "a" (&clk) : "cc");
__asm__ __volatile__ ("stck 0(%1)" : "=m" (clk) : "a" (&clk) : "cc");
return clk;
}

Expand Down

0 comments on commit 4c9866b

Please sign in to comment.