Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / openmp / runtime / src / exports_test_so.txt
blobc0a08e6d3b23be7363fb987412245b056989cd72
1 # exports_test_so.txt #
4 #//===----------------------------------------------------------------------===//
5 #//
6 #// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
7 #// See https://llvm.org/LICENSE.txt for license information.
8 #// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 #//
10 #//===----------------------------------------------------------------------===//
13 # This is used only to test if the linker supports version scripts. If the full
14 # version script it used we may error on undefined symbols and erroneously fail.
16 VERSION {
18     global: # Exported symbols.
20         *;         # All symbols as exported for testing.
22 }; # VERSION
24 # sets up GCC OMP_ version dependency chain
25 OMP_1.0 {
27 OMP_2.0 {
28 } OMP_1.0;
29 OMP_3.0 {
30 } OMP_2.0;
31 OMP_3.1 {
32 } OMP_3.0;
33 OMP_4.0 {
34 } OMP_3.1;
35 OMP_4.5 {
36 } OMP_4.0;
37 OMP_5.0 {
38 } OMP_4.5;
40 # sets up GCC GOMP_ version dependency chain
41 GOMP_1.0 {
43 GOMP_2.0 {
44 } GOMP_1.0;
45 GOMP_3.0 {
46 } GOMP_2.0;
47 GOMP_4.0 {
48 } GOMP_3.0;
49 GOMP_4.5 {
50 } GOMP_4.0;
51 GOMP_5.0 {
52 } GOMP_4.5;
53 GOMP_5.0.1 {
54 } GOMP_5.0;
56 # end of file #