forked from OSchip/llvm-project
Fix a Clang diagnostic to start with a lowercase letter; NFC
This commit is contained in:
parent
9372662050
commit
d7f846fc6b
|
@ -21,7 +21,7 @@ let CategoryName = "Inline Assembly Issue" in {
|
|||
def err_asm_empty : Error<"__asm used with no assembly instructions">;
|
||||
def err_inline_ms_asm_parsing : Error<"%0">;
|
||||
def err_msasm_unsupported_arch : Error<
|
||||
"Unsupported architecture '%0' for MS-style inline assembly">;
|
||||
"unsupported architecture '%0' for MS-style inline assembly">;
|
||||
def err_msasm_unable_to_create_target : Error<
|
||||
"MS-style inline assembly is not available: %0">;
|
||||
def err_gnu_inline_asm_disabled : Error<
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// RUN: %clang_cc1 %s -triple powerpc64-unknown-linux-gnu -fasm-blocks -verify -fsyntax-only
|
||||
|
||||
void f() {
|
||||
__asm nop // expected-error {{Unsupported architecture 'powerpc64' for MS-style inline assembly}}
|
||||
__asm nop // expected-error {{unsupported architecture 'powerpc64' for MS-style inline assembly}}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue