summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/ARM/clang-section.ll
Commit message (Collapse)AuthorAgeFilesLines
* Migrate function attribute "no-frame-pointer-elim"="false" to ↵Fangrui Song2019-12-241-4/+4
| | | | "frame-pointer"="none" as cleanups after D56351
* Add support for #pragma clang sectionJaved Absar2017-06-051-0/+140
This patch provides a means to specify section-names for global variables, functions and static variables, using #pragma directives. This feature is only defined to work sensibly for ELF targets. One can specify section names as: #pragma clang section bss="myBSS" data="myData" rodata="myRodata" text="myText" One can "unspecify" a section name with empty string e.g. #pragma clang section bss="" data="" text="" rodata="" Reviewers: Roger Ferrer, Jonathan Roelofs, Reid Kleckner Differential Revision: https://reviews.llvm.org/D33413 llvm-svn: 304704
OpenPOWER on IntegriCloud