brintos

brintos / llvm-project-archived public Read only

0
0
Text · 728 B · 3736a2e Raw
24 lines · plain
1; REQUIRES: x862; RUN: llvm-as %s -o %t.o3 4; RUN: %lld %t.o -o %t.dylib -dylib5; RUN: llvm-objdump -d --section="__text" --no-leading-addr --no-show-raw-insn %t.dylib | FileCheck %s6; CHECK: nop{{$}}7 8; RUN: %lld -mcpu znver1 %t.o -o %t.znver1.dylib -dylib9; RUN: llvm-objdump -d --section="__text" --no-leading-addr --no-show-raw-insn %t.znver1.dylib | FileCheck %s --check-prefix=ZNVER110 11; ZNVER1: nopw12; ZNVER1-NOT: nop{{$}}13 14target triple = "x86_64-apple-darwin"15target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"16 17define void @foo() #0 {18entry:19  call void asm sideeffect ".p2align        4", "~{dirflag},~{fpsr},~{flags}"()20  ret void21}22 23attributes #0 = { "frame-pointer"="all" }24