brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 4d2624a Raw
21 lines · c
1// RUN: touch %t.o2// RUN: %clang -flto=thin -fenable-matrix %t.o -### --target=powerpc64-ibm-aix-xcoff 2>&1 \3// RUN:     | FileCheck %s -check-prefix=CHECK-THINLTO-MATRIX-AIX4// CHECK-THINLTO-MATRIX-AIX: "-bplugin_opt:-enable-matrix"5 6// RUN: %clang -flto=thin -fenable-matrix %t.o -### --target=x86_64-unknown-linux 2>&1 \7// RUN:     | FileCheck %s -check-prefix=CHECK-THINLTO-MATRIX8// CHECK-THINLTO-MATRIX: "-plugin-opt=-enable-matrix"9 10// RUN: %clang -flto -ffat-lto-objects -fenable-matrix %t.o -### --target=x86_64-unknown-linux 2>&1 \11// RUN:     | FileCheck %s -check-prefix=CHECK-THINLTO-MATRIX12 13// RUN: %clang -flto=thin -ffat-lto-objects -fenable-matrix %t.o -### --target=x86_64-unknown-linux 2>&1 \14// RUN:     | FileCheck %s -check-prefix=CHECK-THINLTO-MATRIX15 16// RUN: %clang -flto -funified-lto -fenable-matrix %t.o -### --target=x86_64-unknown-linux 2>&1 \17// RUN:     | FileCheck %s -check-prefix=CHECK-THINLTO-MATRIX18 19// RUN: %clang -flto=thin -funified-lto -fenable-matrix %t.o -### --target=x86_64-unknown-linux 2>&1 \20// RUN:     | FileCheck %s -check-prefix=CHECK-THINLTO-MATRIX21