summaryrefslogtreecommitdiffstats
path: root/test/Sema/attr-noreturn.c
blob: d1417f093ffb9d21728bba830c387f9b43aae197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// RUN: clang-cc -verify -fsyntax-only %s

static void (*fp0)(void) __attribute__((noreturn));

static void __attribute__((noreturn)) f0(void) {
  fatal();
}

// On K&R
int f1() __attribute__((noreturn));

int g0 __attribute__((noreturn)); // expected-warning {{'noreturn' attribute only applies to function types}}

int f2() __attribute__((noreturn(1, 2))); // expected-error {{attribute requires 0 argument(s)}}

void f3() __attribute__((noreturn));
void f3() {
  return;  // expected-error {{function 'f3' declared 'noreturn' should not return}}
}

#pragma clang diagnostic warning "-Winvalid-noreturn"

void f4() __attribute__((noreturn));
void f4() {
  return;  // expected-warning {{function 'f4' declared 'noreturn' should not return}}
}

OpenPOWER on IntegriCloud