diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-24 16:09:17 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-24 16:09:17 -0800 |
commit | fcf3d3d44ba4b8cc41f81615c2a14e76b383127e (patch) | |
tree | ce9d017178cc0f2e1ad3668f452aafaec3489549 | |
parent | 2deac8fa0c95d5c07b344e1ee966ea818c0b578b (diff) | |
download | cproc-fcf3d3d44ba4b8cc41f81615c2a14e76b383127e.tar.xz |
driver: Fix -E with no output specified
-rw-r--r-- | driver.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -201,7 +201,10 @@ buildobj(struct input *input, char *output, enum phaseid last) if (fd < 0) fatal("mkstemp:"); close(fd); - } else if (!output && last != PREPROCESS) { + } else if (output) { + if (strcmp(output, "-") == 0) + output = NULL; + } else if (last != PREPROCESS) { switch (last) { case COMPILE: ext = "qbe"; break; case CODEGEN: ext = "s"; break; @@ -211,8 +214,6 @@ buildobj(struct input *input, char *output, enum phaseid last) } if (strcmp(input->name, "-") == 0) input->name = NULL; - if (strcmp(output, "-") == 0) - output = NULL; npids = 0; for (i = first, fd = -1, phaseoutput = NULL; i <= last; ++i, ++npids) { |