Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-nm / X86 / bitcode.test
blob42826c9f9c96cb35104fc1e753a820aefef035e7
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
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
8 ; RECOGNISED: ---------------- T foo
9 ; UNRECOGNISED: error: [[FILE]]: The file was not recognized as a valid object file
11 target triple = "x86_64-unknown-linux-gnu"
12 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
14 define void @foo() {
15   ret void