repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Require target lra in gcc.dg/pr108095.c
[official-gcc.git]
/
gcc
/
testsuite
/
objc.dg
/
break-in-ifstmt.m
blob
6176832ed1c56e847f047a21b50c5821b911707a
1
/* { dg-do compile } */
2
/* { dg-additional-options "-Wno-objc-root-class" } */
3
4
@interface foo
5
- (void) test;
6
@end
7
8
@implementation foo
9
-(void) test {
10
if (1) {
11
break; /* { dg-error "break" } */
12
}
13
}
14
@end
15