brintos

brintos / llvm-project-archived public Read only

0
0
Text · 536 B · 4d6e2ce Raw
10 lines · plain
1;; Check that .note.GNU-stack sections are emitted on Linux, but not on Solaris.2 3; RUN: llc < %s -mtriple=i686-linux | FileCheck %s -check-prefix=CHECK-GNUSTACK4; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s -check-prefix=CHECK-GNUSTACK5; RUN: llc < %s -mtriple=i386-solaris | FileCheck %s -check-prefix=CHECK-NOGNUSTACK6; RUN: llc < %s -mtriple=amd64-solaris | FileCheck %s -check-prefix=CHECK-NOGNUSTACK7 8; CHECK-GNUSTACK: .section	".note.GNU-stack","",@progbits9; CHECK-NOGNUSTACK-NOT: .section	".note.GNU-stack","",@progbits10