[RISCV][VLOPT] Add vector narrowing integer right shift instructions to isSupportedIn...
[llvm-project.git] / llvm / test / tools / llvm-ar / create.test
bloba29b93ec5d6dac8baa79c7325c1892436bd09352
1 ## Test the creation warning and supression of that warning.
3 RUN: touch %t1.txt
4 RUN: touch %t2.txt
6 RUN: rm -f %t.warning.ar
7 RUN: llvm-ar r %t.warning.ar %t1.txt %t2.txt 2>&1 \
8 RUN:   | FileCheck %s -DOUTPUT=%t.warning.ar
10 CHECK: warning: creating [[OUTPUT]]
12 RUN: rm -f %t.supressed.ar
13 RUN: llvm-ar cr %t.supressed.ar %t1.txt %t2.txt 2>&1 | count 0