brintos

brintos / llvm-project-archived public Read only

0
0
Text · 594 B · fe925f8 Raw
16 lines · c
1// This test uses '<prefix>-SAME: {{^}}' to start matching immediately where the2// previous check finished matching (specifically, caret is not treated as3// matching a start of line when used like this in FileCheck).4 5// RUN: not %clang_cc1 -triple bpf--- -target-cpu not-a-cpu -fsyntax-only %s 2>&1 | FileCheck %s6// CHECK: error: unknown target CPU 'not-a-cpu'7// CHECK-NEXT: note: valid target CPU values are:8// CHECK-SAME: {{^}} generic9// CHECK-SAME: {{^}}, v110// CHECK-SAME: {{^}}, v211// CHECK-SAME: {{^}}, v312// CHECK-SAME: {{^}}, v413// CHECK-SAME: {{^}}, probe14// CHECK-SAME: {{$}}15 16