[PATCH] D48792: [ARM] Set execute-only flags in .text.

Ivan Lozano via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 30 10:09:16 PDT 2018


ivanlozano added a comment.

Just to follow up on the earlier issue I mentioned where handwritten assembly sections named .text were not getting the execute-only flag applied ( https://reviews.llvm.org/D48792#1186500 ), it seems I was mistaken. Defining the section as below //**does**// result in the execute-only flags being set properly in the object file.

  .section .text,"axy",%progbits,unique,0;


https://reviews.llvm.org/D48792





More information about the llvm-commits mailing list