mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 19:36:05 +00:00

CodeGen-level implementation. Instead of adding an attribute to clang's FunctionDecl, add the IR attribute directly. This means a module built with this flag is now compatible with code built without it and vice versa. This change also results in the 'noalias' attribute no longer being added to calls to operator new in the IR; it's now only added to the declaration. It also fixes a bug where we failed to add the attribute to the 'nothrow' versions (because we didn't implicitly declare them, there was no good time to inject a fake attribute). llvm-svn: 265728
50 lines
697 B
C++
50 lines
697 B
C++
// RUN: %clang_cc1 %s -triple x86_64-unknown-unknown -emit-llvm -o - | FileCheck %s
|
|
// PR6641
|
|
|
|
extern "C" int printf(const char *, ...);
|
|
|
|
struct Foo {
|
|
Foo() : iFoo (2) {
|
|
printf("%p\n", this);
|
|
}
|
|
int iFoo;
|
|
};
|
|
|
|
|
|
typedef Foo (*T)[3][4];
|
|
|
|
T bar() {
|
|
return new Foo[2][3][4];
|
|
}
|
|
|
|
T bug(int i) {
|
|
return new Foo[i][3][4];
|
|
}
|
|
|
|
void pr(T a) {
|
|
for (int i = 0; i < 3; i++)
|
|
for (int j = 0; j < 4; j++)
|
|
printf("%p\n", a[i][j]);
|
|
}
|
|
|
|
Foo *test() {
|
|
return new Foo[5];
|
|
}
|
|
|
|
int main() {
|
|
T f = bar();
|
|
pr(f);
|
|
f = bug(3);
|
|
pr(f);
|
|
|
|
Foo * g = test();
|
|
for (int i = 0; i < 5; i++)
|
|
printf("%d\n", g[i].iFoo);
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: call i8* @_Znam
|
|
// CHECK: call i8* @_Znam
|
|
// CHECK: call i8* @_Znam
|
|
|