move the operator delete updating into a separate update record so we can cope with updating another module's destructor's operator delete. llvm-svn: 231735
4 lines
66 B
C
4 lines
66 B
C
struct X { X(); virtual ~X(); };
|
|
inline X::~X() {}
|
|
#include "a.h"
|