New testcase for PR276: llvm-g++ does not mangle method names that match stdlib function names

llvm-svn: 12265
This commit is contained in:
Chris Lattner 2004-03-09 22:51:03 +00:00
parent b26b6fe9a7
commit 30f984671a
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
// RUN: %llvmgcc -xc++ -c -o - %s | llvm-dis | grep _ZN11AccessFlags6strlenEv
struct AccessFlags {
void strlen();
};
void AccessFlags::strlen() { }