Keep track of analysis information inherited from Module pass manager.
[oota-llvm.git] / test / C++Frontend / 2003-09-30-CommaExprBug.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3 class Empty {};
4
5 void foo(Empty E);
6
7 void bar() {
8   foo(Empty());
9 }
10