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