Remove SVR4 specific pseudo-ops.

oldstable
Robert Lunnon 2005-10-24 15:01:34 +00:00 committed by Alexandre Julliard
parent 9aa432346c
commit d4c425b681
1 changed files with 0 additions and 5 deletions

View File

@ -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";
}
}