brintos

brintos / llvm-project-archived public Read only

0
0
Text · 635 B · 42826c9 Raw
17 lines · plain
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.bc4 5; RUN: llvm-nm %t.bc | FileCheck %s --check-prefix=RECOGNISED6; RUN: not llvm-nm %t.bc --no-llvm-bc 2>&1 | FileCheck %s --check-prefix=UNRECOGNISED -DFILE=%t.bc7 8; RECOGNISED: ---------------- T foo9; UNRECOGNISED: error: [[FILE]]: The file was not recognized as a valid object file10 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 void16}17