1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 /* PRE testcase for PR 24231, problem with PRE coalescing abnormal phis. */
5 virtual void deallocate() = 0;
9 m_memoryManager->deallocate();
11 void swap(XalanVector& theOther) {
12 MemoryManager* const theTempManager = m_memoryManager;
13 m_memoryManager = theOther.m_memoryManager;
14 theOther.m_memoryManager = theTempManager;
18 XalanVector theTemp(*this);
22 MemoryManager* m_memoryManager;
26 XalanVector tempVector;
27 tempVector.push_back();