[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:
Atmn 2020-12-31 12:50:17 -05:00
parent 1a9eb19af9
commit 1a65b8c739
1 changed files with 2 additions and 1 deletions

View File

@ -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;