From 80df56f7f9efbf54ac05eb14120eacb6d2c70071 Mon Sep 17 00:00:00 2001 From: Yuanfang Chen Date: Thu, 18 Mar 2021 15:52:14 -0700 Subject: [PATCH] Fix test case in b4a8c0ebb6d4 --- llvm/test/MC/ELF/lto-discard.s | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/llvm/test/MC/ELF/lto-discard.s b/llvm/test/MC/ELF/lto-discard.s index 75a7d7e..8ea8ab5 100644 --- a/llvm/test/MC/ELF/lto-discard.s +++ b/llvm/test/MC/ELF/lto-discard.s @@ -1,17 +1,16 @@ // Check that ".lto_discard" ignores symbol assignments and attribute changes // for the specified symbols. -// RUN: llvm-mc -triple x86_64 < %s | FileCheck %s +// RUN: llvm-mc -triple x86_64-pc-linux-gnu < %s | FileCheck %s // Check that ".lto_discard" only accepts identifiers. -// RUN: not llvm-mc -filetype=obj -triple x86_64 --defsym ERR=1 %s 2>&1 |\ +// RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu --defsym ERR=1 %s 2>&1 |\ // RUN: FileCheck %s --check-prefix=ERR -// CHECK: .weak foo -// CHECK: foo: -// CHECK: .byte 1 -// CHECK: .weak bar -// CHECK: bar: -// CHECK: .byte 2 +// CHECK-NOT: .weak foo +// CHECK-NOT: foo: +// CHECK: .weak bar +// CHECK: bar: +// CHECK: .byte 2 .lto_discard foo .weak foo -- 2.7.4