Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48461
b: refs/heads/master
c: 3101673
h: refs/heads/master
i:
  48459: ded04c6
v: v3
  • Loading branch information
Randy Dunlap authored and Andi Kleen committed Feb 13, 2007
1 parent 329aa00 commit 4ec130e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 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: 30b82ea08c3365a6fc916250ff2ad634717fc81b
refs/heads/master: 3101673b659b916c965271c7f7c9b99cb353c01c
8 changes: 5 additions & 3 deletions trunk/arch/i386/math-emu/status_w.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@

#define status_word() \
((partial_status & ~SW_Top & 0xffff) | ((top << SW_Top_Shift) & SW_Top))
#define setcc(cc) ({ \
partial_status &= ~(SW_C0|SW_C1|SW_C2|SW_C3); \
partial_status |= (cc) & (SW_C0|SW_C1|SW_C2|SW_C3); })
static inline void setcc(int cc)
{
partial_status &= ~(SW_C0|SW_C1|SW_C2|SW_C3);
partial_status |= (cc) & (SW_C0|SW_C1|SW_C2|SW_C3);
}

#ifdef PECULIAR_486
/* Default, this conveys no information, but an 80486 does it. */
Expand Down

0 comments on commit 4ec130e

Please sign in to comment.