Displaying 6 results from an estimated 6 matches for "test_good".
Did you mean:
test_bool
2015 Jul 23
2
[LLVMdev] Intel asm syntax and variable names
Hi all,
I've encountered an issue with x86 Intel asm syntax when using certain variable names.
If you look at the following example, where I try to do a mov to a memory location named "flags2", llvm- mc works fine:
>cat test_good.s
mov eax, flags2
>llvm-mc.exe -x86-asm-syntax=intel test_good.s -o -
.text
movl flags2, %eax
But if the memory location is named "flags", llvm-mc fails:
>cat test_bad.s
mov eax, flags
>llvm-mc.exe -x86-asm-syntax=intel test_bad.s -o -
test_bad.s:1:1: error:...
2015 Jul 23
0
[LLVMdev] Intel asm syntax and variable names
...> Hi all,
>
>
>
> I’ve encountered an issue with x86 Intel asm syntax when using certain
> variable names.
>
>
>
> If you look at the following example, where I try to do a mov to a memory
> location named “flags2”, llvm- mc works fine:
>
>
>
> >cat test_good.s
>
> mov eax, flags2
>
> >llvm-mc.exe -x86-asm-syntax=intel test_good.s -o -
>
> .text
>
> movl flags2, %eax
>
>
>
> But if the memory location is named “flags”, llvm-mc fails:
>
>
>
> >cat test_bad.s
>
> mov eax, flags...
2015 Jul 23
2
[LLVMdev] Intel asm syntax and variable names
...yatsina at intel.com<mailto:marina.yatsina at intel.com>> wrote:
Hi all,
I’ve encountered an issue with x86 Intel asm syntax when using certain variable names.
If you look at the following example, where I try to do a mov to a memory location named “flags2”, llvm- mc works fine:
>cat test_good.s
mov eax, flags2
>llvm-mc.exe -x86-asm-syntax=intel test_good.s -o -
.text
movl flags2, %eax
But if the memory location is named “flags”, llvm-mc fails:
>cat test_bad.s
mov eax, flags
>llvm-mc.exe -x86-asm-syntax=intel test_bad.s -o -
test_bad.s:1:1: error: invalid op...
2015 Jul 23
0
[LLVMdev] Intel asm syntax and variable names
...> Hi all,
>
>
>
> I’ve encountered an issue with x86 Intel asm syntax when using certain
> variable names.
>
>
>
> If you look at the following example, where I try to do a mov to a memory
> location named “flags2”, llvm- mc works fine:
>
>
>
> >cat test_good.s
>
> mov eax, flags2
>
> >llvm-mc.exe -x86-asm-syntax=intel test_good.s -o -
>
> .text
>
> movl flags2, %eax
>
>
>
> But if the memory location is named “flags”, llvm-mc fails:
>
>
>
> >cat test_bad.s
>
> mov eax, flags...
2015 Jul 23
1
[LLVMdev] Intel asm syntax and variable names
...> Hi all,
>
>
>
> I’ve encountered an issue with x86 Intel asm syntax when using certain variable names.
>
>
>
> If you look at the following example, where I try to do a mov to a memory location named “flags2”, llvm- mc works fine:
>
>
>
> >cat test_good.s
>
> mov eax, flags2
>
> >llvm-mc.exe -x86-asm-syntax=intel test_good.s -o -
>
> .text
>
> movl flags2, %eax
>
>
>
> But if the memory location is named “flags”, llvm-mc fails:
>
>
>
> >cat test_bad.s
>
> m...
2006 Mar 27
13
Is this a bug in Ajax handling?
...if id == "1"
render :text => "login", :layout => false, :status => 500
else
redirect_to :action => ''index''
end
end
end
in my app/views/test/test.rhtml...
<%= link_to_remote "test_good",
:update => "test_div",
:url => { :controller => ''test'' :action => ''test'', :id => 1},
:loading => "alert(''loading'')",
:success => "alert(''success'')",
:failure =...