diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-02 14:05:07 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-02 14:05:07 +0000 |
commit | cf7b95446ba84e7e2269fca3a04c6e40572cb595 (patch) | |
tree | 6505fb8e27b5e5e83a8b0465f563c945cf348174 /configure | |
parent | 44678cb6d34bfdc726f65dcd91c5f25c6f35d471 (diff) | |
download | gcc-cf7b95446ba84e7e2269fca3a04c6e40572cb595.tar.gz |
2012-07-02 Richard Guenther <rguenther@suse.de>
config/
* isl.m4 (_ISL_CHECK_CT_PROG): Omit main function header/footer.
Fix version test.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189159 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/configure b/configure index b157a721989..0dd80caba4d 100755 --- a/configure +++ b/configure @@ -5712,12 +5712,9 @@ else int main () { -int main() - { - if (strncmp (isl_version (), "isl-0.10", strlen ("isl-0.10")) != 0) - return 1; - return 0; - } +if (strncmp (isl_version (), "isl-0.10", strlen ("isl-0.10")) != 0) + return 1; + ; return 0; } |