Free the constants that have no uses in ~LLVMContext.
[oota-llvm.git] / test / FrontendC++ / 2004-03-09-UnmangledBuiltinMethods.cpp
1 // RUN: %llvmgcc -xc++ -c -o - %s | llvm-dis | grep _ZN11AccessFlags6strlenEv
2
3 struct AccessFlags {
4   void strlen();
5 };
6
7 void AccessFlags::strlen() { }
8