From 524457edbc3da4ff3c9f6b7cbca3cd66caa4d16e Mon Sep 17 00:00:00 2001 From: Simon Atanasyan Date: Wed, 13 May 2020 08:14:28 +0300 Subject: [PATCH] [mips] Fix typo in FileCheck directives - replace \0xa0 char by space. NFC The problem is found by the D79276 on the following builder: http://lab.llvm.org:8011/builders/llvm-clang-x86_64-expensive-checks-win/builds/23489 --- llvm/test/MC/Mips/micromips-jump-pc-region.s | 2 +- llvm/test/MC/Mips/mips-jump-pc-region.s | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/test/MC/Mips/micromips-jump-pc-region.s b/llvm/test/MC/Mips/micromips-jump-pc-region.s index 9c4ce49..e531569 100644 --- a/llvm/test/MC/Mips/micromips-jump-pc-region.s +++ b/llvm/test/MC/Mips/micromips-jump-pc-region.s @@ -1,5 +1,5 @@ # RUN: llvm-mc -triple=mips -mcpu=mips32 -mattr=+micromips -filetype=obj < %s \ -# RUN: | llvm-objdump -d - | FileCheck %s +# RUN: | llvm-objdump -d - | FileCheck %s .set noreorder diff --git a/llvm/test/MC/Mips/mips-jump-pc-region.s b/llvm/test/MC/Mips/mips-jump-pc-region.s index af7e969..66a0b73 100644 --- a/llvm/test/MC/Mips/mips-jump-pc-region.s +++ b/llvm/test/MC/Mips/mips-jump-pc-region.s @@ -1,7 +1,7 @@ # RUN: llvm-mc -triple=mips -mcpu=mips32 -filetype=obj < %s \ -# RUN: | llvm-objdump -d - | FileCheck %s +# RUN: | llvm-objdump -d - | FileCheck %s # RUN: llvm-mc -triple=mips64 -mcpu=mips64 -filetype=obj < %s \ -# RUN: | llvm-objdump -d - | FileCheck %s +# RUN: | llvm-objdump -d - | FileCheck %s .set noreorder -- 2.7.4