Skip to content
Snippets Groups Projects
Commit 225dff51 authored by Simon Atanasyan's avatar Simon Atanasyan
Browse files

[mips] Fix typo (missed space) in the warning message

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@310038 91177308-0d34-0410-b5e6-96231b3b80d8
parent af027792
No related branches found
No related tags found
No related merge requests found
......@@ -282,7 +282,7 @@ def warn_target_unsupported_compact_branches : Warning<
" support it">, InGroup<UnsupportedCB>;
def warn_drv_unsupported_gpopt : Warning<
"ignoring '-mgpopt' option as it cannot be used with %select{|the implicit"
" usage of}0-mabicalls">,
" usage of }0-mabicalls">,
InGroup<UnsupportedGPOpt>;
def warn_drv_unable_to_find_directory_expected : Warning<
......
// REQUIRES: mips-registered-target
// RUN: %clang -### -c -target mips-mti-elf %s -mgpopt 2>&1 | FileCheck -check-prefix=IMPLICIT %s
// IMPLICIT: warning: ignoring '-mgpopt' option as it cannot be used with the implicit usage of-mabicalls
// IMPLICIT: warning: ignoring '-mgpopt' option as it cannot be used with the implicit usage of -mabicalls
// RUN: %clang -### -c -target mips-mti-elf %s -mgpopt -mabicalls 2>&1 | FileCheck -check-prefix=EXPLICIT %s
// EXPLICIT: warning: ignoring '-mgpopt' option as it cannot be used with -mabicalls
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment