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
13 lines
318 B
C++
13 lines
318 B
C++
// RUN: %clang_cc1 -flto -flto-unit -triple x86_64-unknown-linux -fvisibility hidden -fsanitize=cfi-vcall -fsanitize-trap=cfi-vcall -emit-llvm -o - %s | FileCheck %s
|
|
|
|
struct A {
|
|
virtual void f(int);
|
|
};
|
|
|
|
int g();
|
|
void f(A *a) {
|
|
// CHECK: call noundef i32 @_Z1gv()
|
|
// CHECK: call i1 @llvm.type.test
|
|
a->f(g());
|
|
}
|