
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
19 lines
542 B
C++
19 lines
542 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-unused-value %s
|
|
|
|
// Make sure diagnostics that we don't print based on runtime control
|
|
// flow are delayed correctly in cases where we can't immediately tell whether
|
|
// the context is unevaluated.
|
|
|
|
namespace std {
|
|
class type_info;
|
|
}
|
|
|
|
int& NP(int);
|
|
void test1() { (void)typeid(NP(1 << 32)); }
|
|
|
|
class Poly { virtual ~Poly(); };
|
|
Poly& P(int);
|
|
void test2() { (void)typeid(P(1 << 32)); } // expected-warning {{shift count >= width of type}}
|
|
|
|
void test3() { 1 ? (void)0 : (void)typeid(P(1 << 32)); }
|