Displaying 8 results from an estimated 8 matches for "156703".
Did you mean:
15603
2012 May 16
2
[LLVMdev] NVPTX: __iAtomicCAS support ?
...rted
dmikushin at hp2:~> cd ~/rpmbuild/BUILD/llvm/ && svn info
Path: .
Working Copy Root Path: /tmp/rpmbuild_debug/BUILD/llvm
URL: http://llvm.org/svn/llvm-project/llvm/trunk
Repository Root: http://llvm.org/svn/llvm-project
Repository UUID: 91177308-0d34-0410-b5e6-96231b3b80d8
Revision: 156703
Node Kind: directory
Schedule: normal
Last Changed Author: foad
Last Changed Rev: 156703
Last Changed Date: 2012-05-12 12:30:16 +0400 (Sat, 12 May 2012)
2012 Jun 10
1
[LLVMdev] Why no setAddressSpace method?
Dear LLVM,
A minor thing.
During opt passes it is sometimes needed to adjust the pointer address
space. However, I've noticed PointerType in LLVM has only get accessor, and
clang has its initial setter. Maybe better to
--- DerivedTypes.h (revision 156703)
+++ DerivedTypes.h (working copy)
@@ -450,6 +450,9 @@
/// @brief Return the address space of the Pointer type.
inline unsigned getAddressSpace() const { return getSubclassData(); }
+ /// @brief Set the address space of the Pointer type.
+ inline void setAddressSpace(unsigned addrspace)...
2012 May 16
0
[LLVMdev] NVPTX: __iAtomicCAS support ?
...~/rpmbuild/BUILD/llvm/ && svn info
> Path: .
> Working Copy Root Path: /tmp/rpmbuild_debug/BUILD/llvm
> URL: http://llvm.org/svn/llvm-project/llvm/trunk
> Repository Root: http://llvm.org/svn/llvm-project
> Repository UUID: 91177308-0d34-0410-b5e6-96231b3b80d8
> Revision: 156703
> Node Kind: directory
> Schedule: normal
> Last Changed Author: foad
> Last Changed Rev: 156703
> Last Changed Date: 2012-05-12 12:30:16 +0400 (Sat, 12 May 2012)
-----------------------------------------------------------------------------------
This email message is for the sole us...
2012 Aug 02
1
[LLVMdev] Questions about clang options
...ing cc1 (the backend) anyways. So if you would
like to invoke it by hand, the only thing to know is the right
combination of options. Try to use the compiler verbose option "-v".
It will show you how exactly clang invokes the backend:
> clang -v -c showdebug.c
clang version 3.2 (trunk 156703)
Target: x86_64-unknown-linux-gnu
Thread model: posix
"/opt/kernelgen/bin/clang" -cc1 -triple x86_64-unknown-linux-gnu
-emit-obj -mrelax-all -disable-free -main-file-name showdebug.c
-mrelocation-model static -mdisable-fp-elim -fmath-errno -masm-verbose
-mconstructor-aliases -munwind-tab...
2012 Jun 28
1
[LLVMdev] Any way to use a pass in opt, that does not have normal constructor?
Dear LLVM,
The TargetData pass needs target data layout to be specified in
constructor, and therefore its normal ctor is defined, but always
gives a fatal error.
Still, is there any way to make it loadable into the opt tool? I need
this to make use of bugpoint in reducing backend test case.
Thanks,
- Dima.
2011 Jul 01
2
Problems auto-mounting volume under Ubuntu 10.10
Hey all, I'm having problems getting a gluster volume to auto-mount on boot in an Ubuntu 10.10 environment. I can mount it manually just fine.
Strangely I see nothing in the gluster logs or /var/log/messages relating to gluster. My fstab looks like:
192.168.1.202:/test-volume /mnt/test-volume glusterfs defaults,_netdev 0 0
Anyone have any ideas?
Best,
Devin
2012 Aug 02
0
[LLVMdev] Questions about clang options
On Thu, Aug 2, 2012 at 8:56 AM, Xinglin Zhang <xinglinzh at gmail.com> wrote:
> Hi,
>
> I am quite new to LLVM. I just compiled LLVM and clang on Ubuntu11.10 then
> followed the tutorial http://llvm.org/docs/DebuggingJITedCode.html
>
> clang -cc1 -O0 -g -emit-llvm showdebug.c
>
>
> where showdebug.c contains:
>
> #include<stdio.h>
> int main()
>
2012 Aug 02
2
[LLVMdev] Questions about clang options
Hi,
I am quite new to LLVM. I just compiled LLVM and clang on Ubuntu11.10 then
followed the tutorial http://llvm.org/docs/DebuggingJITedCode.html
clang -cc1 -O0 -g -emit-llvm showdebug.c
where showdebug.c contains:
#include<stdio.h>
int main()
{
printf("hello\n");
return 0;
}
But I got
Fatal error: 'stdio.h' file not found.
However,
clang showdebug.c
has no