diff options
author | Joshua Bakita <jbakita@cs.unc.edu> | 2020-10-20 16:26:25 -0400 |
---|---|---|
committer | Joshua Bakita <jbakita@cs.unc.edu> | 2020-10-20 16:26:25 -0400 |
commit | 2e4b1efc7e46b1278e162cb63632546af8f3e0e9 (patch) | |
tree | e74b7be70efb34b192e3fa11c3ff41c6fdfa643e /baseline/source/epic/epic.c | |
parent | 03412b9f841f140b9b7410a1890298e3ac2835db (diff) |
Convert TACLeBench to use new libextra API
No other changes.
Diffstat (limited to 'baseline/source/epic/epic.c')
-rw-r--r-- | baseline/source/epic/epic.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/baseline/source/epic/epic.c b/baseline/source/epic/epic.c index ed08040..e31e54e 100644 --- a/baseline/source/epic/epic.c +++ b/baseline/source/epic/epic.c | |||
@@ -1131,15 +1131,13 @@ int main( int argc, char **argv ) | |||
1131 | { | 1131 | { |
1132 | int exit_code = -1; | 1132 | int exit_code = -1; |
1133 | SET_UP | 1133 | SET_UP |
1134 | for (jobsComplete=0; jobsComplete<maxJobs; jobsComplete++){ | 1134 | for_each_job { |
1135 | START_LOOP | ||
1136 | epic_init(); | 1135 | epic_init(); |
1137 | epic_main(); | 1136 | epic_main(); |
1138 | // This checks the checksum is as expected. | 1137 | // This checks the checksum is as expected. |
1139 | // This is `&` as only the first job will match | 1138 | // This is `&` as only the first job will match |
1140 | // (image state persists between jobs). | 1139 | // (image state persists between jobs). |
1141 | exit_code &= epic_return(); | 1140 | exit_code &= epic_return(); |
1142 | STOP_LOOP | ||
1143 | } | 1141 | } |
1144 | WRITE_TO_FILE | 1142 | WRITE_TO_FILE |
1145 | return exit_code; | 1143 | return exit_code; |