search for: link_

Displaying 8 results from an estimated 8 matches for "link_".

Did you mean: link
2008 Oct 15
2
[LLVMdev] LLVM 2.4 problem? (resend)
..._must_ compare !=, if they are different objects. Wether are the same object or or not is answered by the notion of linkage: 8 An identifier used in more than one translation unit can potentially refer to the same entity in these translation units depending on the linkage (_basic.link_) of the identifier specified in each translation unit. 2 A name is said to have linkage when it might denote the same object, reference, function, type, template, namespace or value as a name introduced by a declaration in another scope: to be pedantically clear, entity includ...
2008 Oct 15
0
[LLVMdev] LLVM 2.4 problem? (resend)
On Oct 15, 2008, at 6:58 AM, Tatu Vaajalahti wrote: >> Yes, but why do you think they should get a different address? I can >> understand that it is surprising that they do, but determining >> whether >> this is legal or not requires reading the language standard. >> Hopefully >> a language lawyer can chime in and say whether this transform is >>
2008 Oct 15
4
[LLVMdev] LLVM 2.4 problem? (resend)
On 15.10.2008, at 16.43, Duncan Sands wrote: >> True, but note that it is the address of a variable that is used, not >> the value. > > Yes, but why do you think they should get a different address? I can > understand that it is surprising that they do, but determining whether > this is legal or not requires reading the language standard. > Hopefully > a language
2006 Apr 05
1
Cannot install RMySQL under Kubuntu
List, I am attempting to install RMySQL on a Kubuntu box. mysql and R were installed using the adept package manager: "apt-get install mysql-server" "apt-get install r-base" I can access mysql via the terminal and I can open R and perform various basic tasks. However, I cannot install the RMySQL package in R. I get the following error: * Installing *source*
2008 May 05
0
[LLVMdev] optimization assumes malloc return is non-null
...ion whose definition is provided by a C++ program. Only one definition for such a function is in effect for the duration of the program's execution, as the result of creating the program (_lex.phases_) and resolving the definitions of all translation units (_basic.link_). 17.1.15 required behavior [defns.required.behavior] a description of replacement function and handler function semantics, applicable to both the behavior provided by the implementation and the behavior that shall be provided by any function definition in the...
2008 May 01
3
[LLVMdev] optimization assumes malloc return is non-null
(Hi Mike!) On May 1, 2008, at 6:11 PM, Mike Stump wrote: > On Apr 30, 2008, at 9:26 PM, Chris Lattner wrote: >> Personally to me, I have a bigger axe to grind with C++ operator new. >> AFAIK, the standard doesn't give leeway to do a number of interesting >> optimizations for new/delete because the user is explicitly allowed >> to >> override them and the std
2008 Oct 16
0
[LLVMdev] LLVM 2.4 problem? (resend)
On Oct 15, 2008, at 6:29 PM, Mike Stump wrote: > On Oct 15, 2008, at 1:09 PM, David Vandevoorde wrote: >> On Oct 15, 2008, at 3:53 PM, Mike Stump wrote: >> [...] >>> Objects are defined like so: >>> >>> Two pointers of >>> the same type compare equal if and only if they are both null, >>> both >>> point to the same object or
2008 Oct 15
3
[LLVMdev] LLVM 2.4 problem? (resend)
On Oct 15, 2008, at 1:09 PM, David Vandevoorde wrote: > On Oct 15, 2008, at 3:53 PM, Mike Stump wrote: > [...] >> Objects are defined like so: >> >> Two pointers of >> the same type compare equal if and only if they are both null, >> both >> point to the same object or function, or both point one past the >> end >> of the same array.