
This patch updates test files after D105169. Autogenerated test codes are changed by `utils/update_cc_test_checks.py,` and non-autogenerated test codes are changed as follows: (1) I wrote a python script that (partially) updates the tests using regex: {F18594904} The script is not perfect, but I believe it gives hints about which patterns are updated to have `noundef` attached. (2) The remaining tests are updated manually. Reviewed By: eugenis Differential Revision: https://reviews.llvm.org/D108453
30 lines
578 B
C++
30 lines
578 B
C++
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
struct Foo {
|
|
Foo();
|
|
Foo(const Foo&);
|
|
};
|
|
|
|
struct Bar {
|
|
Bar();
|
|
operator const Foo&() const;
|
|
};
|
|
|
|
void f(Foo);
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z1g3Foo(%struct.Foo* noundef %foo)
|
|
void g(Foo foo) {
|
|
// CHECK: call void @_ZN3BarC1Ev
|
|
// CHECK: @_ZNK3BarcvRK3FooEv
|
|
// CHECK: call void @_Z1f3Foo
|
|
f(Bar());
|
|
// CHECK: call void @_ZN3FooC1Ev
|
|
// CHECK: call void @_Z1f3Foo
|
|
f(Foo());
|
|
// CHECK: call void @_ZN3FooC1ERKS_
|
|
// CHECK: call void @_Z1f3Foo
|
|
f(foo);
|
|
// CHECK: ret
|
|
}
|
|
|