Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / ThinLTOBitcodeWriter / split-vfunc-internal.ll
blob60fa228c73603a75bb361f02ae430558dbf20989
1 ; REQUIRES: x86-registered-target
2 ; RUN: opt -thinlto-bc -thinlto-split-lto-unit -o %t %s
3 ; RUN: llvm-modextract -b -n 0 -o - %t | llvm-dis | FileCheck --check-prefix=M0 %s
4 ; RUN: llvm-modextract -b -n 1 -o - %t | llvm-dis | FileCheck --check-prefix=M1 %s
6 target triple = "x86_64-unknown-linux-gnu"
8 define ptr @source() {
9   ret ptr @g
12 ; M0: @g.84f59439b469192440047efc8de357fb = external hidden constant [1 x ptr]{{$}}
13 ; M1: @g.84f59439b469192440047efc8de357fb = hidden constant [1 x ptr] [ptr @ok.84f59439b469192440047efc8de357fb]
14 @g = internal constant [1 x ptr] [
15   ptr @ok
16 ], !type !0
18 ; M0: define hidden i64 @ok.84f59439b469192440047efc8de357fb
19 ; M1: define available_externally hidden i64 @ok.84f59439b469192440047efc8de357fb
20 define internal i64 @ok(ptr %this) {
21   ret i64 42
24 !0 = !{i32 0, !"typeid"}