From: Chris Lattner Date: Sat, 19 Feb 2005 06:56:46 +0000 (+0000) Subject: Make this testcase harder, to test the read case as well. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=630f340f8f958b2c48e341cfad49a7177dae55c4;p=oota-llvm.git Make this testcase harder, to test the read case as well. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20245 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/C++Frontend/2005-02-19-BitfieldStructCrash.cpp b/test/C++Frontend/2005-02-19-BitfieldStructCrash.cpp index 9923271dafb..8f571e074b8 100644 --- a/test/C++Frontend/2005-02-19-BitfieldStructCrash.cpp +++ b/test/C++Frontend/2005-02-19-BitfieldStructCrash.cpp @@ -9,3 +9,6 @@ struct Command { }; Command X(QChar('c')); + +void Foo(QChar ); +void bar() { Foo(X.c); }