1//
2// Copyright (c) Microsoft. All rights reserved.
3// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4//
5
6#ifndef _ASMDumper
7#define _ASMDumper
8
9#include "methodcontext.h"
10#include "compileresult.h"
11
12class ASMDumper
13{
14public:
15 static void DumpToFile(HANDLE hFile, MethodContext* mc, CompileResult* cr);
16};
17
18#endif