Skip to content
  • Duncan P. N. Exon Smith's avatar
    754e21f2
    MC: Remove MCSubtargetInfo() default constructor · 754e21f2
    Duncan P. N. Exon Smith authored
    Force all creators of `MCSubtargetInfo` to immediately initialize it,
    merging the default constructor and the initializer into an initializing
    constructor.  Besides cleaning up the code a little, this makes it clear
    that the initializer is never called again later.
    
    Out-of-tree backends need a trivial change: instead of calling:
    
        auto *X = new MCSubtargetInfo();
        InitXYZMCSubtargetInfo(X, ...);
        return X;
    
    they should call:
    
        return createXYZMCSubtargetInfoImpl(...);
    
    There's no real functionality change here.
    
    llvm-svn: 241957
    754e21f2
    MC: Remove MCSubtargetInfo() default constructor
    Duncan P. N. Exon Smith authored
    Force all creators of `MCSubtargetInfo` to immediately initialize it,
    merging the default constructor and the initializer into an initializing
    constructor.  Besides cleaning up the code a little, this makes it clear
    that the initializer is never called again later.
    
    Out-of-tree backends need a trivial change: instead of calling:
    
        auto *X = new MCSubtargetInfo();
        InitXYZMCSubtargetInfo(X, ...);
        return X;
    
    they should call:
    
        return createXYZMCSubtargetInfoImpl(...);
    
    There's no real functionality change here.
    
    llvm-svn: 241957
Loading