Go to file
Sanjiv Gupta 639f2d92f8 Don't use static globals for params as it confuses the optimzer that their values are never being used in the function.
llvm-svn: 68328
2009-04-02 17:51:27 +00:00
clang Don't use static globals for params as it confuses the optimzer that their values are never being used in the function. 2009-04-02 17:51:27 +00:00
llvm Params are not being generated as static globals now. The caller passes them onto the callee's stack directly and the callee loads the argvals from its own stack. Clang generated frameindexes validatd by recalculating the stack as if all frameindexes represent 1-byte slots. 2009-04-02 17:42:00 +00:00