Lionel Sambuc 0a6a1f1d05 NetBSD re-synchronization of the source tree
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
2016-01-13 20:32:14 +01:00

30 lines
736 B
C++

// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
namespace Common {
enum RenderMode {
kRenderEGA,
kRenderCGA
};
class C;
class A {
A();
C *_vm;
unsigned char _highlightColorTableVGA[];
static const unsigned char b[];
};
// CHECK: [[Common_A_b:@[^ ]+]] = constant [1 x i8] zeroinitializer
class B {
public:
Common::RenderMode _configRenderMode;
};
class C : public B {};
A::A() {
0 == Common::kRenderCGA || _vm->_configRenderMode == Common::kRenderEGA
? b
: _highlightColorTableVGA;
// Make sure the PHI value is casted correctly to the PHI type
// CHECK: %{{.*}} = phi [0 x i8]* [ bitcast ([1 x i8]* [[Common_A_b]] to [0 x i8]*), %{{.*}} ], [ %{{.*}}, %{{.*}} ]
}
const unsigned char A::b[] = { 0 };
}