Displaying 6 results from an estimated 6 matches for "some_symbol".
2018 Jan 08
2
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
...ly syntax, but I think that is apropriate for the LLVM machine intermediate language.
- Matthias
> On Dec 26, 2017, at 3:29 PM, Sean Silva via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> Can we use %% for vregs? Seems slightly easier to remember %/%% than $/%. Also, %eax and $some_symbol are already familiar from typical assembly syntax and we probably don't want to break that association.
>
> It's all a bikeshed, but being more consistent with assembly is probably a win.
>
> -- Sean Silva
>
> On Dec 25, 2017 11:31 AM, "Puyan Lotfi via llvm-dev&quo...
2017 Dec 26
0
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
Can we use %% for vregs? Seems slightly easier to remember %/%% than $/%.
Also, %eax and $some_symbol are already familiar from typical assembly
syntax and we probably don't want to break that association.
It's all a bikeshed, but being more consistent with assembly is probably a
win.
-- Sean Silva
On Dec 25, 2017 11:31 AM, "Puyan Lotfi via llvm-dev" <
llvm-dev at lists.llvm...
2017 Dec 25
2
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
Hi
A few of us have discussed enhancing the MIR vregs to include support for
named-vregs. At the moment named regs are only supported for physical
registers and number regs are reserved for vregs.
We've decided that to properly implement a syntax for MIR named vregs we
first need to reorganized the sigils used for physical registers and
external symbols so our proposal is to swap the sigil
2018 Jan 08
0
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
...t rationale makes a lot of sense to me. SGTM.
-- Sean Silva
>
> - Matthias
>
> On Dec 26, 2017, at 3:29 PM, Sean Silva via llvm-dev <
> llvm-dev at lists.llvm.org> wrote:
>
> Can we use %% for vregs? Seems slightly easier to remember %/%% than $/%.
> Also, %eax and $some_symbol are already familiar from typical assembly
> syntax and we probably don't want to break that association.
>
> It's all a bikeshed, but being more consistent with assembly is probably a
> win.
>
> -- Sean Silva
>
> On Dec 25, 2017 11:31 AM, "Puyan Lotfi via llvm-...
2005 Nov 25
2
acts_as_list with 2 fields in the scope
Hi Railers,
I''ve got a Categories table.
I want it to act as a list within the scope of the parent_id AND the
site_id.
Categories table :
id
label
site_id
parent_id
So, in my Category class, I have :
acts_as_list :scope => ''site_id = #{site_id} AND parent_id = #
{parent_id}''
The problem is that when I try to move_up a Category with a parent_id
that is null,
2010 Jul 20
20
render :js => "alert('Test !')"
Hi Folks,
I use render :js => "alert(''Test !'')" in my modele, but instead of
having the alert displayed, the browser try to donload a file containing
this string : <<render :js => "alert(''Test !'')">>. Do you know why I the
browser behaves such a way ?
Regards
--
Posted via http://www.ruby-forum.com/.
--
You received