Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git] / test / C++Frontend / 2003-09-22-CompositeExprValue.cpp
bloba8208adc5127cef9e28a19b7fb0c44af4329df29
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
3 struct duration {
4 duration operator/=(int c) {
5 return *this;
7 };
9 void a000090() {
10 duration() /= 1;