forked from OSchip/llvm-project
TargetData is not subclassed. So no need to have virtual method.
llvm-svn: 31173
This commit is contained in:
parent
3becc6b0d5
commit
373beb28ae
|
@ -147,7 +147,7 @@ public:
|
||||||
/// getPreferredAlignmentLog - Return the preferred alignment of the
|
/// getPreferredAlignmentLog - Return the preferred alignment of the
|
||||||
/// specified global, returned in log form. This includes an explicitly
|
/// specified global, returned in log form. This includes an explicitly
|
||||||
/// requested alignment (if the global has one).
|
/// requested alignment (if the global has one).
|
||||||
virtual unsigned getPreferredAlignmentLog(const GlobalVariable *GV) const;
|
unsigned getPreferredAlignmentLog(const GlobalVariable *GV) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
/// StructLayout - used to lazily calculate structure layout information for a
|
/// StructLayout - used to lazily calculate structure layout information for a
|
||||||
|
|
Loading…
Reference in New Issue