Displaying 4 results from an estimated 4 matches for "undefname".
2013 Sep 12
3
[LLVMdev] [lld] Implementing the aliasing feature
....
================
Comment at: lib/Core/Resolver.cpp:214
@@ +213,3 @@
+ // for COFF "weak external" symbol.
+ const UndefinedAtom *fallbackUndefAtom = undefAtom->fallback();
+ if (fallbackUndefAtom) {
----------------
You need to re-test:
if (!_symbolTable.isDefined(undefName)
because searchLibraries() may have already found a definition.
http://llvm-reviews.chandlerc.com/D1550
_______________________________________________
llvm-commits mailing list
llvm-commits at cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
-------------- next part -------...
2013 Sep 13
0
[LLVMdev] [lld] Implementing the aliasing feature
...ib/Core/Resolver.cpp:214
> @@ +213,3 @@
> + // for COFF "weak external" symbol.
> + const UndefinedAtom *fallbackUndefAtom = undefAtom->fallback();
> + if (fallbackUndefAtom) {
> ----------------
> You need to re-test:
> if (!_symbolTable.isDefined(undefName)
> because searchLibraries() may have already found a definition.
>
>
> http://llvm-reviews.chandlerc.com/D1550
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-comm...
2013 Sep 13
2
[LLVMdev] [lld] Implementing the aliasing feature
...> @@ +213,3 @@
>> + // for COFF "weak external" symbol.
>> + const UndefinedAtom *fallbackUndefAtom = undefAtom->fallback();
>> + if (fallbackUndefAtom) {
>> ----------------
>> You need to re-test:
>> if (!_symbolTable.isDefined(undefName)
>> because searchLibraries() may have already found a definition.
>>
>>
>> http://llvm-reviews.chandlerc.com/D1550
>> _______________________________________________
>> llvm-commits mailing list
>> llvm-commits at cs.uiuc.edu
>> http://lists.cs.uiuc....
2013 Sep 13
0
[LLVMdev] [lld] Implementing the aliasing feature
...gt;> + // for COFF "weak external" symbol.
>>> + const UndefinedAtom *fallbackUndefAtom = undefAtom->fallback();
>>> + if (fallbackUndefAtom) {
>>> ----------------
>>> You need to re-test:
>>> if (!_symbolTable.isDefined(undefName)
>>> because searchLibraries() may have already found a definition.
>>>
>>>
>>> http://llvm-reviews.chandlerc.com/D1550
>>> _______________________________________________
>>> llvm-commits mailing list
>>> llvm-commits at cs.uiuc.edu...