Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
clean-compiler-and-rts
compiler
Commits
a17cf868
Commit
a17cf868
authored
May 09, 2001
by
Ronny Wichers Schreur
🏢
Browse files
bail out if illegal command arguments are passed to the backend
parent
8239d226
Changes
1
Hide whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/backend.c
View file @
a17cf868
#define CODE_INLINE_FLAG
#define DYNAMIC_TYPE 1
...
...
@@ -2632,7 +2631,8 @@ BEArg (CleanString arg)
char
*
dummy
;
extern
Bool
ParseCommandArgs
(
int
argc
,
char
**
argv
,
char
**
file_name_p
,
char
**
output_file_name_p
);
(
void
)
ParseCommandArgs
(
gBEState
.
be_argc
,
gBEState
.
be_argv
,
&
dummy
,
&
dummy
);
if
(
!
ParseCommandArgs
(
gBEState
.
be_argc
,
gBEState
.
be_argv
,
&
dummy
,
&
dummy
))
FatalCompError
(
"backend"
,
"BEInit"
,
"compilation aborted"
);
/* FatalCompError ("backend", "BEInit", "FatalCompError in backend"); */
/* ErrorInCompiler ("backend", "BEInit", "ErrorInCompiler in backend"); */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment