Do not use abort()

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20713 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rtogni 2006-11-05 17:08:36 +00:00
parent 09ebe87f57
commit 506b4783ec
1 changed files with 7 additions and 7 deletions

View File

@ -418,7 +418,7 @@ static int asmrp_operand (asmrp_t *p) {
if (p->sym != ASMRP_SYM_ID) {
printf ("error: identifier expected.\n");
abort();
break;
}
i = asmrp_find_id (p, p->str);
@ -443,7 +443,7 @@ static int asmrp_operand (asmrp_t *p) {
if (p->sym != ASMRP_SYM_RPAREN) {
printf ("error: ) expected.\n");
abort();
break;
}
asmrp_get_sym (p);
@ -451,7 +451,6 @@ static int asmrp_operand (asmrp_t *p) {
default:
printf ("syntax error, $ number or ( expected\n");
abort();
}
#ifdef LOG
@ -461,6 +460,7 @@ static int asmrp_operand (asmrp_t *p) {
return ret;
}
static int asmrp_comp_expression (asmrp_t *p) {
int a;
@ -559,20 +559,20 @@ static void asmrp_assignment (asmrp_t *p) {
if (p->sym != ASMRP_SYM_ID) {
printf ("error: identifier expected\n");
abort ();
return;
}
asmrp_get_sym (p);
if (p->sym != ASMRP_SYM_EQUALS) {
printf ("error: = expected\n");
abort ();
return;
}
asmrp_get_sym (p);
if ( (p->sym != ASMRP_SYM_NUM) && (p->sym != ASMRP_SYM_STRING)
&& (p->sym != ASMRP_SYM_ID)) {
printf ("error: number or string expected\n");
abort ();
return;
}
asmrp_get_sym (p);
@ -620,7 +620,7 @@ static int asmrp_rule (asmrp_t *p) {
if (p->sym != ASMRP_SYM_SEMICOLON) {
printf ("semicolon expected.\n");
abort ();
return ret;
}
asmrp_get_sym (p);