forked from OSchip/llvm-project
[Clang][Misc] Change run line in fragile test
This test has %clang in the run line when it should have %clang_cc1. This should prevent future release test failures. Differential Revision: https://reviews.llvm.org/D93952
This commit is contained in:
parent
1a9eb19af9
commit
1a65b8c739
|
@ -1,4 +1,5 @@
|
|||
// RUN: %clang -O1 -fno-unroll-loops -S -o - %s -emit-llvm | FileCheck %s
|
||||
// This relies on %clang_cc1, %clang does not emit the block names in Release mode.
|
||||
// RUN: %clang_cc1 -O1 -fno-unroll-loops -S -o - %s -emit-llvm | FileCheck %s
|
||||
|
||||
extern int a[16];
|
||||
int b = 0;
|
||||
|
|
Loading…
Reference in New Issue