diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2015-05-21 09:47:46 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2015-05-21 09:47:46 +0000 |
commit | 5129d3a4f58c7514a31d49da5c7c70c17aaa9a8f (patch) | |
tree | 949ba9c1c89f75d50cc59e708639b8a4db3e0a74 /clang/test/OpenMP/single_codegen.cpp | |
parent | 2db1a03b07ce4d22ad32ebbecdc2099b0e67524e (diff) | |
download | bcm5719-llvm-5129d3a4f58c7514a31d49da5c7c70c17aaa9a8f.tar.gz bcm5719-llvm-5129d3a4f58c7514a31d49da5c7c70c17aaa9a8f.zip |
[OPENMP] Fixed codegen for parameters privatization.
For parameters we shall take a derived type of parameters, not the original one.
llvm-svn: 237882
Diffstat (limited to 'clang/test/OpenMP/single_codegen.cpp')
-rw-r--r-- | clang/test/OpenMP/single_codegen.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/OpenMP/single_codegen.cpp b/clang/test/OpenMP/single_codegen.cpp index d3ad969b37f..0593b2aa751 100644 --- a/clang/test/OpenMP/single_codegen.cpp +++ b/clang/test/OpenMP/single_codegen.cpp @@ -178,12 +178,12 @@ struct St { ~St() {} }; -void array_func(int a[3], St s[2]) { +void array_func(int n, int a[n], St s[2]) { // ARRAY: call void @__kmpc_copyprivate(%ident_t* @{{.+}}, i32 %{{.+}}, i64 16, i8* %{{.+}}, void (i8*, i8*)* [[CPY:@.+]], i32 %{{.+}}) #pragma omp single copyprivate(a, s) ; } // ARRAY: define internal void [[CPY]] -// ARRAY: call void @llvm.memcpy.p0i8.p0i8.i64(i8* %{{.+}}, i8* %{{.+}}, i64 12, i32 4, i1 false) -// ARRAY: call dereferenceable(8) %struct.St* @_ZN2StaSERKS_(%struct.St* %{{.+}}, %struct.St* dereferenceable(8) %{{.+}}) +// ARRAY: store i32* %{{.+}}, i32** %{{.+}}, +// ARRAY: store %struct.St* %{{.+}}, %struct.St** %{{.+}}, #endif |