Displaying 4 results from an estimated 4 matches for "400330".
Did you mean:
u00330
2009 May 26
4
[LLVMdev] CVS binutils includes support for plugins, can use the llvm plugin.
...as been committed to BFD. That is the file
format abstraction library used by binutils. This now works
$ llvm-gcc -emit-llvm -O2 -c a.c
$ llvm-gcc -emit-llvm -O2 -c b.c
$ ar --plugin libLLVMgold.so q a.a a.o
$ llvm-gcc -use-gold-plugin b.o a.a -o t
$ objdump -d t | grep main\>: -A 2
0000000000400330 <main>:
400330: 31 c0 xor %eax,%eax
400332: c3 retq
with a.c being "int f(void) { return 0;}" and b.c being "int f(void);
int main(void) { return f(); }".
BFD will also search for plugins in <prefix>/lib/bfd-plugins. You c...
2007 Apr 29
0
[Bug 393] 'known_hosts' file should be indexed by IP:PORT, not just IP
http://bugzilla.mindrot.org/show_bug.cgi?id=393
natasha+maui at safe-emails.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|mindrot at askneil.com |
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2009 Jul 12
0
[LLVMdev] CVS binutils includes support for plugins, can use the llvm plugin.
...ile
> format abstraction library used by binutils. This now works
>
> $ llvm-gcc -emit-llvm -O2 -c a.c
> $ llvm-gcc -emit-llvm -O2 -c b.c
> $ ar --plugin libLLVMgold.so q a.a a.o
> $ llvm-gcc -use-gold-plugin b.o a.a -o t
> $ objdump -d t | grep main\>: -A 2
> 0000000000400330 <main>:
> 400330: 31 c0 xor %eax,%eax
> 400332: c3 retq
>
> with a.c being "int f(void) { return 0;}" and b.c being "int f(void);
> int main(void) { return f(); }".
>
> BFD will also search for p...
2009 Jul 07
1
[LLVMdev] CVS binutils includes support for plugins, can use the llvm plugin.
...imeOptimization.html document and wherever else
relevant?
-Chris
>
> $ llvm-gcc -emit-llvm -O2 -c a.c
> $ llvm-gcc -emit-llvm -O2 -c b.c
> $ ar --plugin libLLVMgold.so q a.a a.o
> $ llvm-gcc -use-gold-plugin b.o a.a -o t
> $ objdump -d t | grep main\>: -A 2
> 0000000000400330 <main>:
> 400330: 31 c0 xor %eax,%eax
> 400332: c3 retq
>
> with a.c being "int f(void) { return 0;}" and b.c being "int f(void);
> int main(void) { return f(); }".
>
> BFD will also search for plugins in <pr...