Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / pr9130.cpp
blob1a74aa559e875017283037b752f895c4a10fb1ba
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s
3 class nsOggCodecState {
4 virtual int StartTime() {
5 return -1;
7 };
8 class nsVorbisState : public nsOggCodecState {
9 virtual ~nsVorbisState();
11 nsVorbisState::~nsVorbisState() {
14 // CHECK-LABEL: define linkonce_odr noundef i32 @_ZN15nsOggCodecState9StartTimeEv