X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/2d39b0e377c0896910ee49ae70082ba665faf986..HEAD:/bytecompiler/Label.h diff --git a/bytecompiler/Label.h b/bytecompiler/Label.h index 81cdf3c..b76c648 100644 --- a/bytecompiler/Label.h +++ b/bytecompiler/Label.h @@ -41,7 +41,7 @@ namespace JSC { class Label { public: - explicit Label(BytecodeGenerator* generator) + explicit Label(BytecodeGenerator& generator) : m_refCount(0) , m_location(invalidLocation) , m_generator(generator) @@ -82,7 +82,7 @@ namespace JSC { int m_refCount; unsigned m_location; - BytecodeGenerator* m_generator; + BytecodeGenerator& m_generator; mutable JumpVector m_unresolvedJumps; };