diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2024-01-30 13:38:18 -0500 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2024-01-30 13:38:18 -0500 |
commit | 201eb2b5775cf193c97c60a5eb790003a1e6bedb (patch) | |
tree | f11f41d4e2747e9737dd1c7122a771f75df3e921 /clang/test/CodeGenCXX/cxx2b-static-subscript-operator.cpp | |
parent | 3477bcf4b94395e2c0ed77a139e54240cfe4f27d (diff) | |
download | llvm-201eb2b5775cf193c97c60a5eb790003a1e6bedb.zip llvm-201eb2b5775cf193c97c60a5eb790003a1e6bedb.tar.gz llvm-201eb2b5775cf193c97c60a5eb790003a1e6bedb.tar.bz2 |
Revert "[clang] static operators should evaluate object argument (#68485)"
This reverts commit 30155fc0ef4fbdce2d79434aaae8d58b2fabb20a.
It seems to have broken some tests in clangd:
http://45.33.8.238/linux/129484/step_9.txt
Diffstat (limited to 'clang/test/CodeGenCXX/cxx2b-static-subscript-operator.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/cxx2b-static-subscript-operator.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/clang/test/CodeGenCXX/cxx2b-static-subscript-operator.cpp b/clang/test/CodeGenCXX/cxx2b-static-subscript-operator.cpp index 5d82589..5dbd2c5 100644 --- a/clang/test/CodeGenCXX/cxx2b-static-subscript-operator.cpp +++ b/clang/test/CodeGenCXX/cxx2b-static-subscript-operator.cpp @@ -7,17 +7,12 @@ struct Functor { } }; -Functor GetAFunctor() { - return {}; -} - void call_static_subscript_operator() { Functor f; f[101, 102]; f.operator[](201, 202); Functor{}[301, 302]; Functor::operator[](401, 402); - GetAFunctor()[501, 502]; } // CHECK: define {{.*}}call_static_subscript_operator{{.*}} @@ -26,8 +21,6 @@ void call_static_subscript_operator() { // CHECK-NEXT: {{.*}} = call noundef i32 {{.*}}Functor{{.*}}(i32 noundef 201, i32 noundef 202) // CHECK-NEXT: {{.*}} = call noundef i32 {{.*}}Functor{{.*}}(i32 noundef 301, i32 noundef 302) // CHECK-NEXT: {{.*}} = call noundef i32 {{.*}}Functor{{.*}}(i32 noundef 401, i32 noundef 402) -// CHECK: {{.*}}call {{.*}}GetAFunctor{{.*}}() -// CHECK-NEXT: {{.*}} = call noundef i32 {{.*}}Functor{{.*}}(i32 noundef 501, i32 noundef 502) // CHECK-NEXT: ret void // CHECK-NEXT: } @@ -67,7 +60,7 @@ void test_dep_functors() { // CHECK: define {{.*}}test_dep_functors{{.*}} // CHECK-NEXT: entry: -// CHECK: {{.*}} = call noundef i32 {{.*}}DepFunctor{{.*}}(float noundef 1.000000e+00) -// CHECK: {{.*}} = call noundef i32 {{.*}}DepFunctor{{.*}}(i1 noundef zeroext true) +// CHECK: %call = call noundef i32 {{.*}}DepFunctor{{.*}}(float noundef 1.000000e+00) +// CHECK: %call1 = call noundef i32 {{.*}}DepFunctor{{.*}}(i1 noundef zeroext true) // CHECK: ret void // CHECK-NEXT: } |