-
Notifications
You must be signed in to change notification settings - Fork 15.2k
Closed
Labels
Description
| Bugzilla Link | 9130 |
| Resolution | FIXED |
| Resolved on | Feb 03, 2011 00:37 |
| Version | trunk |
| OS | All |
| Reporter | LLVM Bugzilla Contributor |
| CC | @DougGregor |
Extended Description
When compiling
class nsOggCodecState {
virtual int StartTime() {
return -1;
}
};
class nsVorbisState : public nsOggCodecState {
virtual ~nsVorbisState();
};
nsVorbisState::~nsVorbisState() {
}
clang will produce
U __ZN15nsOggCodecState9StartTimeEv
gcc produces
S __ZN15nsOggCodecState9StartTimeEv