| Index: crosstest/test_strengthreduce_main.cpp
|
| diff --git a/crosstest/test_strengthreduce_main.cpp b/crosstest/test_strengthreduce_main.cpp
|
| index 2c2aa986ca40b1353316a57c2f2c7024eea4178a..acde64ea9928fee734ae8c9a746be61a9f5f22e2 100644
|
| --- a/crosstest/test_strengthreduce_main.cpp
|
| +++ b/crosstest/test_strengthreduce_main.cpp
|
| @@ -25,7 +25,11 @@ namespace Subzero_ {
|
| #include "test_strengthreduce.h"
|
| }
|
|
|
| -int main(int argc, char **argv) {
|
| +#ifdef X8664_STACK_HACK
|
| +extern "C" int wrapped_main(int argc, char *argv[]) {
|
| +#else // !defined(X8664_STACK_HACK)
|
| +int main(int argc, char *argv[]) {
|
| +#endif // X8664_STACK_HACK
|
| size_t TotalTests = 0;
|
| size_t Passes = 0;
|
| size_t Failures = 0;
|
|
|