mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
Be consistent in using class vs struct to make VC++ happy. And as it contains
methods, virtual method even, class wins. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25098 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -311,7 +311,8 @@ private:
|
|||||||
/// other basic block in the function.
|
/// other basic block in the function.
|
||||||
/// 3. Optimizations conform to all of the constraints of FunctionPasses.
|
/// 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
|
/// doInitialization - Virtual method overridden by subclasses to do
|
||||||
/// any necessary per-module initialization.
|
/// any necessary per-module initialization.
|
||||||
///
|
///
|
||||||
|
Reference in New Issue
Block a user