OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [objc.dg/] [method-17.m] - Rev 853

Go to most recent revision | Compare with Previous | Blame | View Log

/* Test for spurious "may or may not return a value" warnings.  */
 
/* { dg-do compile } */
/* { dg-options "-Wextra" } */
 
#include <objc/Object.h>
 
@interface Foo: Object
- (id) meth1;
- (void) meth2;
@end
 
extern int bar;
 
@implementation Foo
- (id) meth1 {
  if (bar)
    return [Object new];
  return;
} /* { dg-warning "this function may return with or without a value" } */
- (void) meth2 {
  if (!bar)
    return;
  bar = 0;
} /* { dg-bogus "this function may return with or without a value" } */
@end
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.