diff options
Diffstat (limited to 'clang/test/CodeGen')
| -rw-r--r-- | clang/test/CodeGen/pr19841.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/clang/test/CodeGen/pr19841.cpp b/clang/test/CodeGen/pr19841.cpp new file mode 100644 index 00000000000..4350625d182 --- /dev/null +++ b/clang/test/CodeGen/pr19841.cpp @@ -0,0 +1,28 @@ +// 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[]; +}; +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: %cond-lvalue = phi [0 x i8]* [ bitcast ([1 x i8]* @_ZN6Common1A1bE to [0 x i8]*), %cond.true ], [ %_highlightColorTableVGA, %cond.false ] +} +const unsigned char A::b[] = { 0 }; +} |

