aboutsummaryrefslogblamecommitdiff
path: root/test/CodeGenCXX/pr9130.cpp
blob: e726e5a80b0ab2a48d26258465553d56601981a3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                   
                                                                         
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s

class nsOggCodecState {
  virtual int StartTime() {
    return -1;
  }
};
class nsVorbisState : public nsOggCodecState {
  virtual ~nsVorbisState();
};
nsVorbisState::~nsVorbisState() {
}

// CHECK-LABEL: define linkonce_odr i32 @_ZN15nsOggCodecState9StartTimeEv