Skip to content

Commit 98e1459

Browse files
Apply suggestions from code review
Co-authored-by: Aaron Ballman <[email protected]>
1 parent 9638206 commit 98e1459

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

clang/include/clang/Basic/DiagnosticFrontendKinds.td

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,9 @@ def err_function_needs_feature : Error<
287287
"always_inline function %1 requires target feature '%2', but would "
288288
"be inlined into function %0 that is compiled without support for '%2'">;
289289

290-
def err_flatten_function_needs_feature
291-
: Error<"flatten function %0 calls %1 which requires target feature '%2', "
292-
"but the caller is compiled without support for '%2'">;
290+
def err_flatten_function_needs_feature : Error<
291+
"flatten function %0 calls %1 which requires target feature '%2', but the "
292+
"caller is compiled without support for '%2'">;
293293

294294
let CategoryName = "Codegen ABI Check" in {
295295
def err_function_always_inline_attribute_mismatch : Error<

clang/test/CodeGen/target-features-error-3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %clang_cc1 %s -triple=x86_64-linux-gnu -S -verify -o -
1+
// RUN: %clang_cc1 %s -triple=x86_64-linux-gnu -emit-llvm -verify -o /dev/null
22

33
typedef double __v2df __attribute__((__vector_size__(16)));
44

clang/test/CodeGen/target-features-error-4.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %clang_cc1 %s -triple=x86_64-linux-gnu -S -verify -o -
1+
// RUN: %clang_cc1 %s -triple=x86_64-linux-gnu -emit-llvm -verify -o /dev/null
22

33
typedef double __v2df __attribute__((__vector_size__(16)));
44

clang/test/CodeGen/target-features-error-5.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %clang_cc1 %s -triple=x86_64-linux-gnu -target-feature +sse4.1 -S -verify -o -
1+
// RUN: %clang_cc1 %s -triple=x86_64-linux-gnu -target-feature +sse4.1 -emit-llvm -verify -o /dev/null
22

33
typedef double __v2df __attribute__((__vector_size__(16)));
44

0 commit comments

Comments
 (0)