diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-04-16 23:25:00 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-04-16 23:25:00 +0000 |
commit | d6c88ece215ac0d9ec5519803beb3a16c7bffed1 (patch) | |
tree | fc38cea1af09905e71ada8f29cff1ff823c0fe66 /clang/test/OpenMP/parallel_sections_codegen.cpp | |
parent | 556ffb7806e3371f882d3aa502fb5bdc66e4ca8b (diff) | |
download | bcm5719-llvm-d6c88ece215ac0d9ec5519803beb3a16c7bffed1.tar.gz bcm5719-llvm-d6c88ece215ac0d9ec5519803beb3a16c7bffed1.zip |
[opaque pointer types] Explicit non-pointer type for call expressions
(migration for recent LLVM change to textual IR for calls)
llvm-svn: 235147
Diffstat (limited to 'clang/test/OpenMP/parallel_sections_codegen.cpp')
-rw-r--r-- | clang/test/OpenMP/parallel_sections_codegen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/OpenMP/parallel_sections_codegen.cpp b/clang/test/OpenMP/parallel_sections_codegen.cpp index 825d5a3bc1c..89ed37eaa45 100644 --- a/clang/test/OpenMP/parallel_sections_codegen.cpp +++ b/clang/test/OpenMP/parallel_sections_codegen.cpp @@ -22,7 +22,7 @@ T tmain() { // CHECK-LABEL: @main int main() { -// CHECK: call void (%{{.+}}*, i32, void (i32*, i32*, ...)*, ...)* @__kmpc_fork_call(%{{.+}}* @{{.+}}, i32 1, void (i32*, i32*, ...)* bitcast (void (i32*, i32*, %{{.+}}*)* [[OMP_PARALLEL_FUNC:@.+]] to void (i32*, i32*, ...)*), i8* %{{.+}}) +// CHECK: call void (%{{.+}}*, i32, void (i32*, i32*, ...)*, ...) @__kmpc_fork_call(%{{.+}}* @{{.+}}, i32 1, void (i32*, i32*, ...)* bitcast (void (i32*, i32*, %{{.+}}*)* [[OMP_PARALLEL_FUNC:@.+]] to void (i32*, i32*, ...)*), i8* %{{.+}}) // CHECK-LABEL: } // CHECK: define internal void [[OMP_PARALLEL_FUNC]](i32* [[GTID_PARAM_ADDR:%.+]], i32* %{{.+}}, %{{.+}}* %{{.+}}) // CHECK: store i32* [[GTID_PARAM_ADDR]], i32** [[GTID_REF_ADDR:%.+]], |