similar to: [5.0.0 Release] Release Candidate 3 tagged

Displaying 20 results from an estimated 700 matches similar to: "[5.0.0 Release] Release Candidate 3 tagged"

2017 May 24
3
GraphTraits dereferencing
Hello, I’m trying to port a project up to 4.0 and I’m seeing the following error: In file included from /Users/jaredcarlson/Projects/llvm-4.0.0.src/include/llvm/ADT/StringRef.h:13: /Users/jaredcarlson/Projects/llvm-4.0.0.src/include/llvm/ADT/STLExtras.h:139:13: error: no type named 'type' in 'std::__1::result_of<std::__1::pointer_to_unary_function<llvm::DSNode *, llvm::DSNode
2008 Dec 12
1
recursive List extraction question
Dear all, I've got a list L <- list(L1 = list (foo = "bar" , SL = NULL ) , L2 = list ( foo = "bar" , SL = list (SSL1 = list (DF = data.frame(val = 21, foo = "bar") , DFOO = list(foo = "foo", bar = "bar") ) ,
2010 Aug 18
2
[LLVMdev] Git repository to use (read-only)?
On Wednesday, August 18, 2010 11:49:28 am Anton Korobeynikov wrote: > Hello > > > Is there some official git repository to clone from? > > Not yet, but probably there will be something pretty soon. > Right now there are some unofficial mirrors at repo.or.cz and github Ok, then I will try to wait until the official is ready. If I now start that with an unofficial one, I will
2017 Jul 04
4
trunc nsw/nuw?
Hi, > Hi Alexandre, > > LLVM currently doesn't have trunc nsw/nuw, no. > Which frontend would emit such instructions? Any application in mind? > Just asking because if no frontend could emit those, then the motivation to > add nsw/nuw support to trunc would be very low I guess. I think the clang frontend could use that to allow better static analysis of integer overflows on
2017 Jun 05
2
Question about llvm::Value::print performance
Dear Thomas, > Hi Christoph, > > maybe there is a way of caching the print outputs and output them at the > end of the program execution? > So, your real application do not have this kind of bottle neck. this is a valid idea, thought the problem is: I output all things only "once" and I even output it like: 1) load module 2) go over functions 3) output all blocks with
2017 Jun 05
2
Question about llvm::Value::print performance
Hi, I want to use llvm::Value::print to output the assembly strings for llvm::Instructions inside a rather large llvm::Module (linked module with lots of types/...). I started with plain ::print and switched over to http://llvm.org/docs/doxygen/html/classllvm_1_1Value.html#a04e6fc765eeb0c4c90ac5d55113db116 with a ModuleSlotTracker I pass in myself to avoid some complexity. Still now I have
2005 Apr 02
2
Solaris10/amd64 + SunSutio Compile (PR#7767)
Full_Name: Teru KAMOGASHRIA Version: 2.0.1 OS: SunOS sun 5.10 Generic i86pc i386 i86pc Submission from: (NULL) (219.5.176.24) rbinom.c cannot be compiled because of the casting problem. /opt/SUNWspro/bin/cc -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES -g -c rbinom.c -o rbinom.o "rbinom.c", line 60: operand must have real
2014 Jun 12
3
[LLVMdev] Creating and implementing an analysis group out of tree
Hi Eli, Thanks for the link! I'm able to compile a standalone pass outside of the source tree, and I'm obviously ably to compile analysis groups inside the source tree. However, the problem comes when I try to do what the tutorial suggests to create an analysis group outside of the source tree. My understanding is that building out of tree requires different methods to register the
2010 Aug 18
2
[LLVMdev] Git repository to use (read-only)?
Hi, we want to use LLVM together with clang internally for preprocessing and Co. Therefor we would like to integrate it in our buildsystem. The nicest thing for us would be a local git repository mirror, to allow us to easily create own branches and Co. Is there some official git repository to clone from? I looked up the archives and seen that creating own clones of the SVN via git svn is not
2013 Aug 15
1
[LLVMdev] Question about non-UTF-8 filesystems
Hi, it seems that e.g. on Windows, where the filename encoding is not UTF-8, it is impossible to use any filenames containing e.g. german umlauts or chinese characters, because the in LLVM used encoding collides with the encoding used by the OS. There is a open bug for this http://llvm.org/bugs/show_bug.cgi?id=10348 It seems there were patches submitted to fix it, but they were never applied as
2008 Jun 07
1
EVMS?
EVMS Enterprise Volume Management System sounds interesting, looks like it supported CentOS4, but not CentOS5. But maybe I'm not looking in the right places. -- Drew Einhorn -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20080607/a5de7c79/attachment-0002.html>
2005 Jan 16
2
Postfix 2.1 RPM?
hi all, i`m looking for an postfix 2.1 rpm for CentOS 3 with TSL support. i tried the rpm form: http://ftp.wl0.org/official/2.1/RPMS-rhel3-i386/postfix-2.1.5-4.rhel3.i386.rpm but it doesn`t support tsl.
2010 Aug 18
0
[LLVMdev] Git repository to use (read-only)?
Hello > Is there some official git repository to clone from? Not yet, but probably there will be something pretty soon. Right now there are some unofficial mirrors at repo.or.cz and github -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2017 Jul 03
2
trunc nsw/nuw?
Hello, >From [1], trunc does not seems to have a nsw/nuw attribute. Is it possible to have that? Or do we have that and it is not up-to-date? The definition would be: If the nuw keyword is present, the result value of the trunc is a poison value if the truncated high order bits are non-zero. If the nsw keyword is present, the result value of the trunc is a poison value if the truncated high
2004 Oct 13
5
Re: Is this actually possible?
>Hi everyone, and thanks for your help so far. > >I have been playing around with tc and htb for a couple of weeks now, and >while I am nowhere near understanding everything here, I am beginning to >know more about packets than I ever wanted to know. > >I have two university buildings with a 1mb connection to the Internet. The >two buildings (on either side of town) are
2017 Jul 05
2
trunc nsw/nuw?
On Wed, Jul 5, 2017 at 3:59 PM, Hal Finkel via llvm-dev < llvm-dev at lists.llvm.org> wrote: > > On 07/04/2017 01:41 AM, Dr.-Ing. Christoph Cullmann via llvm-dev wrote: > >> Hi, >> >> Hi Alexandre, >>> >>> LLVM currently doesn't have trunc nsw/nuw, no. >>> Which frontend would emit such instructions? Any application in mind?
2006 Jun 28
2
some basic questions
I'm seeking a small IMAP server, and dovecat was recommended by those more savvy than me. (The sign on my monitor is "My programming language is solder..") so I'll be getting help to deploy this, but first... I've read through the wiki docs but still have questions, ones likely too obvious for most readers.... There will be <100 users, the platform will Debian, and I
2017 Jul 05
3
trunc nsw/nuw?
On 07/05/2017 03:10 PM, Alexandre Isoard wrote: > Ah, ok. I read it wrong. In *neither* case it is UB. > > Hum, can an implementation define it as UB? :-) Nope :-) The only case I've thought of where we could add these for C++ would be on conversions to (most) enums (because they used signed underlying types and the out-of-bounds mapping won't generally be one of the allowed
2004 Sep 10
1
Which Distro to use?
Hello, I''m looking for a low-bloat distro that will have support for multiple service providers (DSL & Cable) FreeSWAN VPN, and other kernel patches applied. Something fairly quick and simple. I was origonaly thinking Slackware or Debian. I''d prefer something that is easily updatable (i.e. cron job) without having to deal with source. Thanks Guys. Rich.
2009 Aug 20
1
Video demo of using svSocket with data.table
Dear r-help, If you haven't already seen this then : http://www.youtube.com/watch?v=rvT8XThGA8o The video consists of typing at the console and graphics, there is no audio or slides. Please press the HD button and maximise. Its about 8 mins. Regards, Matthew