Displaying 2 results from an estimated 2 matches for "yx1x886i".
Did you mean:
yx1x886y
2013 Jan 30
3
[LLVMdev] RFC: Replacing publicly accessible class IDs with getters
Hello all,
In the process of porting the Polly plug-in to Windows we encountered a
couple of issues stemming from the use (within Polly) of global data
from LLVM.
By far the most common occurrence of this is the definition by a class
of a publicly accessible static ID, the address of which is used to
uniquely identify the class. For example
class AliasAnalysis {
public:
2013 Feb 05
0
[LLVMdev] RFC: Replacing publicly accessible class IDs with getters
Hi Matthew,
> In the process of porting the Polly plug-in to Windows we encountered a couple
> of issues stemming from the use (within Polly) of global data from LLVM.
>
> By far the most common occurrence of this is the definition by a class of a
> publicly accessible static ID, the address of which is used to uniquely identify
> the class. For example
>
> class