Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MachO / lto-module-asm.ll
blob01adcc438d2aeeb6bd62a2ce552ed933f10fc68c
1 ; REQUIRES: x86
2 ; RUN: llvm-as %s -o %t.o
3 ; RUN: %lld %t.o -o %t
4 ; RUN: llvm-objdump -d %t | FileCheck %s
6 ; CHECK:      <_foo>:
7 ; CHECK-NEXT: retq
9 ; CHECK:      <_main>:
10 ; CHECK-NEXT: jmp {{.*}} <_foo>
12 target triple = "x86_64-apple-macosx10.15.0"
13 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
15 module asm ".text"
16 module asm ".globl _foo"
17 module asm "_foo: ret"
19 declare void @foo()
21 define void @main() {
22   call void @foo()
23   ret void