mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 19:06:04 +00:00

Turning on `enable_noundef_analysis` flag allows better codegen by removing freeze instructions. I modified clang by renaming `enable_noundef_analysis` flag to `disable-noundef-analysis` and turning it off by default. Test updates are made as a separate patch: D108453 Reviewed By: eugenis Differential Revision: https://reviews.llvm.org/D105169
15 lines
356 B
C++
15 lines
356 B
C++
// 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 noundef i32 @_ZN15nsOggCodecState9StartTimeEv
|