Commit d4c425b6 authored by Robert Lunnon's avatar Robert Lunnon Committed by Alexandre Julliard

Remove SVR4 specific pseudo-ops.

parent 9aa43234
......@@ -512,9 +512,6 @@ const char *func_declaration( const char *func )
case PLATFORM_WINDOWS:
sprintf( buffer, ".def _%s; .scl 2; .type 32; .endef", func );
break;
case PLATFORM_SVR4:
sprintf( buffer, ".type %s,2", func );
break;
default:
sprintf( buffer, ".type %s,@function", func );
break;
......@@ -571,7 +568,6 @@ const char *get_asm_string_keyword(void)
switch (target_platform)
{
case PLATFORM_APPLE:
case PLATFORM_SVR4:
return ".asciz";
default:
return ".string";
......@@ -582,7 +578,6 @@ const char *get_asm_short_keyword(void)
{
switch (target_platform)
{
case PLATFORM_SVR4: return ".half";
default: return ".short";
}
}
......
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