blob: e726e5a80b0ab2a48d26258465553d56601981a3 [file] [log] [blame]
Rafael Espindola29157312011-02-03 06:36:50 +00001// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s
2
3class nsOggCodecState {
4 virtual int StartTime() {
5 return -1;
6 }
7};
8class nsVorbisState : public nsOggCodecState {
9 virtual ~nsVorbisState();
10};
11nsVorbisState::~nsVorbisState() {
12}
13
Stephen Lin43622612013-08-15 06:47:53 +000014// CHECK-LABEL: define linkonce_odr i32 @_ZN15nsOggCodecState9StartTimeEv