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
14 lines
259 B
C++
14 lines
259 B
C++
// RUN: %clang_cc1 %s -triple i386-unknown-unknown -emit-llvm -o - | FileCheck %s
|
|
|
|
struct A {
|
|
virtual int operator-();
|
|
};
|
|
|
|
void f(A a, A *ap) {
|
|
// CHECK: call noundef i32 @_ZN1AngEv(%struct.A* {{[^,]*}} %a)
|
|
-a;
|
|
|
|
// CHECK: call noundef i32 %
|
|
-*ap;
|
|
}
|