Files
clang-p2996/llvm/test/tools/llvm-nm/X86/bitcode.test
James Henderson 37c89803d8 [llvm-nm][test] Add additional test coverage for llvm-nm options
Some of these options have a degree of incidental coverage, or are for
Mach-O only. This patch adds dedicated ELF (where applicable) coverage.

Differential Revision: https://reviews.llvm.org/D96602

Reviewed by: rupprecht, Higuoxing
2021-02-15 13:54:08 +00:00

17 lines
635 B
Plaintext

;; Show that llvm-nm prints dashes for the symbol value of symbols in values.
;; Also show that the --no-llvm-bc option prevents loading bitcode files.
; RUN: llvm-as %s -o %t.bc
; RUN: llvm-nm %t.bc | FileCheck %s --check-prefix=RECOGNISED
; RUN: not llvm-nm %t.bc --no-llvm-bc 2>&1 | FileCheck %s --check-prefix=UNRECOGNISED -DFILE=%t.bc
; RECOGNISED: ---------------- T foo
; UNRECOGNISED: error: [[FILE]]: The file was not recognized as a valid object file
target triple = "x86_64-unknown-linux-gnu"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
define void @foo() {
ret void
}