Displaying 6 results from an estimated 6 matches for "test_bad".
2015 Jul 23
2
[LLVMdev] Intel asm syntax and variable names
...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 operand for instruction
mov eax, flags
^
.text
After investigation, I saw that the memory location named "flags" was matched to the EFLAGS register in the MatchRegisterName() fun...
2015 Jul 23
0
[LLVMdev] Intel asm syntax and variable names
...t;
>
>
> >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 operand for instruction
>
> mov eax, flags
>
> ^
>
> .text
>
>
>
> After investigation, I saw that the memory location named “fla...
2015 Jul 23
2
[LLVMdev] Intel asm syntax and variable names
...ing 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 operand for instruction
mov eax, flags
^
.text
After investigation, I saw that the memory location named “flags” was matched to the EFLAGS register in the MatchRegisterName() function in t...
2015 Jul 23
0
[LLVMdev] Intel asm syntax and variable names
...t;
>
>
> >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 operand for instruction
>
> mov eax, flags
>
> ^
>
> .text
>
>
>
> After investigation, I saw that the memory location named “fla...
2015 Jul 23
1
[LLVMdev] Intel asm syntax and variable names
...> >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 operand for instruction
>
> mov eax, flags
>
> ^
>
> .text
>
>
>
> After investigation, I saw that the memory location...
2006 Mar 27
13
Is this a bug in Ajax handling?
...;, :id => 1},
:loading => "alert(''loading'')",
:success => "alert(''success'')",
:failure => "alert(''failed'')",
:position => "after"
%>
<p>
<%= link_to_remote "test_bad",
:update => "test_div",
:url => { :controller => ''test'', :action => ''test'', :id => 2 },
:loading => "alert(''loading'')",
:success => "alert(''success'')",
:failure...