
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
27 lines
821 B
C++
27 lines
821 B
C++
// RUN: %clang_cc1 -fsyntax-only -Wunused-variable -Wunused-label -verify %s
|
|
|
|
static int unused_local_static;
|
|
|
|
namespace PR8455 {
|
|
void f() {
|
|
A: // expected-warning {{unused label 'A'}}
|
|
__attribute__((unused)) int i; // attribute applies to variable
|
|
B: // attribute applies to label
|
|
__attribute__((unused)); int j; // expected-warning {{unused variable 'j'}}
|
|
}
|
|
|
|
void g() {
|
|
C: // unused label 'C' will not appear here because an error has occurred
|
|
__attribute__((unused))
|
|
#pragma weak unused_local_static // expected-error {{expected ';' after __attribute__}}
|
|
;
|
|
}
|
|
|
|
void h() {
|
|
D: // expected-warning {{unused label 'D'}}
|
|
#pragma weak unused_local_static
|
|
__attribute__((unused)) // expected-warning {{declaration does not declare anything}}
|
|
;
|
|
}
|
|
}
|