Commit c6f0a4ed authored by Konrad Rieck's avatar Konrad Rieck Committed by Alexandre Julliard

Changed repne to repnz for Solaris assembler.

parent 48fc4aaa
...@@ -88,7 +88,7 @@ static inline unsigned int strlenW( const WCHAR *str ) ...@@ -88,7 +88,7 @@ static inline unsigned int strlenW( const WCHAR *str )
#if defined(__i386__) && defined(__GNUC__) #if defined(__i386__) && defined(__GNUC__)
int dummy, res; int dummy, res;
__asm__ __volatile__( "cld\n\t" __asm__ __volatile__( "cld\n\t"
"repne\n\t" "repnz\n\t"
"scasw\n\t" "scasw\n\t"
"notl %0" "notl %0"
: "=c" (res), "=&D" (dummy) : "=c" (res), "=&D" (dummy)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment