Skip to content

Commit

Permalink
Fix muls64 prototype to match the actual implementation.
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3537 c046a42c-6fe2-441c-8c8c-71466251a162
  • Loading branch information
j_mayer committed Nov 5, 2007
1 parent 084ed5c commit 05e1d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host-utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ static always_inline void muls64 (uint64_t *plow, uint64_t *phigh,
: "a" (a), "0" (b));
}
#else
void muls64(int64_t *phigh, int64_t *plow, int64_t a, int64_t b);
void muls64(uint64_t *phigh, uint64_t *plow, int64_t a, int64_t b);
void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b);
#endif

Expand Down

0 comments on commit 05e1d83

Please sign in to comment.