[win/asan] GetInstructionSize: Fix `83 E4 XX` to return 3. (#119644)
[llvm-project.git] / llvm / test / CodeGen / Generic / externally_available.ll
blob840f6d76de1a7904b1ea87cda2e2b5a8f55d34f3
1 ; RUN: llc -verify-machine-dom-info < %s | not grep test_
3 ; XFAIL: target={{.*}}-aix{{.*}}
4 ; AIX system assembler default print error for undefined reference .
5 ; so AIX chose to emit the available externally symbols into .s,
6 ; so that users won't run into errors in situations like:
7 ; clang -target powerpc-ibm-aix -xc -<<<$'extern inline __attribute__((__gnu_inline__)) void foo() {}\nvoid bar() { foo(); }' -O -Xclang -disable-llvm-passes
9 ; XFAIL: target=nvptx{{.*}}
10 ; unexpected emitting of the global var, while the function is not emitted as expected
12 ; test_function should not be emitted to the .s file.
13 define available_externally i32 @test_function() {
14   ret i32 4
17 ; test_global should not be emitted to the .s file.
18 @test_global = available_externally global i32 4