Replace the UTF-8 characters in the error message.

llvm-svn: 347178
This commit is contained in:
Brad Smith 2018-11-18 22:30:58 +00:00
parent 7f92efa5a9
commit 58ceba6e46
2 changed files with 2 additions and 2 deletions

View File

@ -357,7 +357,7 @@ def warn_drv_unsupported_pic_with_mabicalls : Warning<
"%select{implicit usage of|}1 -mabicalls and the N64 ABI">,
InGroup<OptionIgnored>;
def err_drv_unsupported_noabicalls_pic : Error<
"position-independent code requires -mabicalls">;
"position-independent code requires '-mabicalls'">;
def err_drv_unsupported_indirect_jump_opt : Error<
"'-mindirect-jump=%0' is unsupported with the '%1' architecture">;
def err_drv_unknown_indirect_jump_opt : Error<

View File

@ -1,2 +1,2 @@
// RUN: not %clang -c -target mips64-linux-gnu -fPIC -mno-abicalls %s 2>&1 | FileCheck %s
// CHECK: error: position-independent code requires -mabicalls
// CHECK: error: position-independent code requires '-mabicalls'