mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Be consistent in using class vs struct to make VC++ happy. And as it contains
methods, virtual method even, class wins. llvm-svn: 25098
This commit is contained in:
parent
5cc9ac7bc7
commit
9b99d8fde6
@ -311,7 +311,8 @@ private:
|
||||
/// other basic block in the function.
|
||||
/// 3. Optimizations conform to all of the constraints of FunctionPasses.
|
||||
///
|
||||
struct BasicBlockPass : public FunctionPass {
|
||||
class BasicBlockPass : public FunctionPass {
|
||||
public:
|
||||
/// doInitialization - Virtual method overridden by subclasses to do
|
||||
/// any necessary per-module initialization.
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user