OSDN Git Service

Don't fall off the end of main
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 9 Jan 2000 07:14:03 +0000 (07:14 +0000)
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 9 Jan 2000 07:14:03 +0000 (07:14 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31290 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/gcc.dg/20000108-1.c

index 4afbc09..f9ff668 100644 (file)
@@ -14,4 +14,5 @@ int main () {
   /* i =  1; */ asm ("" : "=r" (i) : "0" (i ? 1 : 2));
   if (i != 1)
     abort();
+  return 0;
 }