summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/stackrealign.c
AgeCommit message (Collapse)Author
2022-02-15Use functions with prototypes when appropriate; NFCAaron Ballman
A significant number of our tests in C accidentally use functions without prototypes. This patch converts the function signatures to have a prototype for the situations where the test is not specific to K&R C declarations. e.g., void func(); becomes void func(void); This is the eleventh batch of tests being updated (there are a significant number of other tests left to be updated).
2015-09-11Record function attribute "stackrealign" instead of using backend optionAkira Hatanaka
-force-align-stack. Also, make changes to the driver so that -mno-stack-realign is no longer an option exposed to the end-user that disallows stack realignment in the backend. Differential Revision: http://reviews.llvm.org/D11815 llvm-svn: 247451