From 5a8ac3cc63d22acbe9ce872b3c84911f02a39bf4 Mon Sep 17 00:00:00 2001 From: Georgii Rymar Date: Mon, 19 Oct 2020 15:13:01 +0300 Subject: [PATCH] [yaml2obj] - Fix comments. NFC. This addressed post commit comments for D89391. --- llvm/test/tools/yaml2obj/ELF/llvm-addrsig-section.yaml | 2 +- llvm/test/tools/yaml2obj/ELF/note-section.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/tools/yaml2obj/ELF/llvm-addrsig-section.yaml b/llvm/test/tools/yaml2obj/ELF/llvm-addrsig-section.yaml index f8659fe..d6dae9c 100644 --- a/llvm/test/tools/yaml2obj/ELF/llvm-addrsig-section.yaml +++ b/llvm/test/tools/yaml2obj/ELF/llvm-addrsig-section.yaml @@ -118,7 +118,7 @@ Sections: Type: SHT_LLVM_ADDRSIG Content: "1122334455" -## Check we emit an empty section if neither "Content", "Size" not "Symbols" were set. +## Check we emit an empty section if neither "Content", "Size" nor "Symbols" were set. # RUN: yaml2obj --docnum=6 %s -o %t6 # RUN: llvm-readelf --sections %t6 | FileCheck %s --check-prefix=NO-TAGS diff --git a/llvm/test/tools/yaml2obj/ELF/note-section.yaml b/llvm/test/tools/yaml2obj/ELF/note-section.yaml index ccb49ca..b52050e 100644 --- a/llvm/test/tools/yaml2obj/ELF/note-section.yaml +++ b/llvm/test/tools/yaml2obj/ELF/note-section.yaml @@ -172,7 +172,7 @@ Sections: Type: SHT_NOTE Content: "1122334455" -## Check we emit an empty section if neither "Content", "Size" not "Notes" were set. +## Check we emit an empty section if neither "Content", "Size" nor "Notes" were set. # RUN: yaml2obj --docnum=8 %s -o %t8 # RUN: llvm-readelf --sections %t8 | FileCheck %s --check-prefix=NO-TAGS -- 2.7.4