forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Clang][Sema] Fix templated array size calculation. (llvm#96464)
The [last attempt](llvm#89036) to fix llvm#41441 has been reverted immediately. Here I'm trying the simplest idea I've been able to come with: skip handling dependent case in `BuildCXXNew`. The original test (borrowed form llvm#89036) passes. Also I've created and added to the tests a minimal repro of the code llvm#89036 fails on. This (obviously) also passes.
- Loading branch information
Showing
3 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// RUN: %clang --target=x86_64-pc-linux -S -fno-discard-value-names -emit-llvm -o - %s | FileCheck %s | ||
// RUN: %clang_cc1 %s -fsyntax-only -verify | ||
|
||
namespace std { | ||
using size_t = decltype(sizeof(int)); | ||
}; | ||
void* operator new[](std::size_t, void*) noexcept; | ||
|
||
// CHECK: call void @llvm.memset.p0.i64(ptr align 1 %x, i8 0, i64 8, i1 false) | ||
// CHECK: call void @llvm.memset.p0.i64(ptr align 16 %x, i8 0, i64 32, i1 false) | ||
template <typename TYPE> | ||
void f() | ||
{ | ||
typedef TYPE TArray[8]; | ||
|
||
TArray x; | ||
new(&x) TArray(); | ||
} | ||
|
||
template <typename T> | ||
void f1() { | ||
int (*x)[1] = new int[1][1]; | ||
} | ||
template void f1<char>(); | ||
void f2() { | ||
int (*x)[1] = new int[1][1]; | ||
} | ||
|
||
int main() | ||
{ | ||
f<char>(); | ||
f<int>(); | ||
} | ||
|
||
// expected-no-diagnostics | ||
template <typename T> struct unique_ptr {unique_ptr(T* p){}}; | ||
|
||
template <typename T> | ||
unique_ptr<T> make_unique(unsigned long long n) { | ||
return unique_ptr<T>(new T[n]()); | ||
} | ||
|
||
auto boro(int n){ | ||
typedef double HistoryBuffer[4]; | ||
return make_unique<HistoryBuffer>(n); | ||
} |