From: Zack Weinberg Date: Sun, 9 Jan 2000 07:14:03 +0000 (+0000) Subject: Don't fall off the end of main X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9945cc1af86a0404ba1ae21ab0abda708faa2215;p=gcc.git Don't fall off the end of main From-SVN: r31290 --- diff --git a/gcc/testsuite/gcc.dg/20000108-1.c b/gcc/testsuite/gcc.dg/20000108-1.c index 4afbc0953d9..f9ff668a8e6 100644 --- a/gcc/testsuite/gcc.dg/20000108-1.c +++ b/gcc/testsuite/gcc.dg/20000108-1.c @@ -14,4 +14,5 @@ int main () { /* i = 1; */ asm ("" : "=r" (i) : "0" (i ? 1 : 2)); if (i != 1) abort(); + return 0; }