[llvm] 524457e - [mips] Fix typo in FileCheck directives - replace \0xa0 char by space. NFC

Simon Atanasyan via llvm-commits llvm-commits at lists.llvm.org
Wed May 13 02:10:03 PDT 2020


Author: Simon Atanasyan
Date: 2020-05-13T12:09:30+03:00
New Revision: 524457edbc3da4ff3c9f6b7cbca3cd66caa4d16e

URL: https://github.com/llvm/llvm-project/commit/524457edbc3da4ff3c9f6b7cbca3cd66caa4d16e
DIFF: https://github.com/llvm/llvm-project/commit/524457edbc3da4ff3c9f6b7cbca3cd66caa4d16e.diff

LOG: [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

Added: 
    

Modified: 
    llvm/test/MC/Mips/micromips-jump-pc-region.s
    llvm/test/MC/Mips/mips-jump-pc-region.s

Removed: 
    


################################################################################
diff  --git a/llvm/test/MC/Mips/micromips-jump-pc-region.s b/llvm/test/MC/Mips/micromips-jump-pc-region.s
index 9c4ce4989be9..e531569b48af 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 af7e96948d86..66a0b73d77df 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
 


        


More information about the llvm-commits mailing list