search for: saveargs

Displaying 2 results from an estimated 2 matches for "saveargs".

2017 Apr 27
4
-msave-args backend support for x86_64
..."LEA instruction with certain arguments is slow">; def FeatureSlowIncDec : SubtargetFeature<"slow-incdec", "SlowIncDec", "true", "INC and DEC instructions are slower than ADD and SUB">; +def FeatureSaveArgs + : SubtargetFeature<"save-args", "SaveArgs", "true", + "Save register arguments on the stack.">; def FeatureSoftFloat : SubtargetFeature<"soft-float", "UseSoftFloat", "true",...
2005 Feb 27
2
Jumb between macro's and variables
Hello All, I have a macro and want to jump to another macro if a conditition is true or false. Asterisk is jumping to the next macro, but then the {ARG1} variable is not working anymore. part of config: [macro-default] exten => s,1,DBGet(do-not-disturb=DND/${ARG1}) exten => s,2,GotoIf($["${do-not-disturb}" = "YES"]?macro-do_not_disturb,s,1) ... [macro-do_not_disturb]