forked from mosa/MOSA-Project
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
Source/Mosa.Compiler.Framework/Instructions/UnstableRegionEnd.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright (c) MOSA Project. Licensed under the New BSD License. | ||
|
||
// This code was generated by an automated template. | ||
|
||
namespace Mosa.Compiler.Framework.Instructions; | ||
|
||
/// <summary> | ||
/// UnstableRegionEnd | ||
/// </summary> | ||
public sealed class UnstableRegionEnd : BaseIRInstruction | ||
{ | ||
public UnstableRegionEnd() | ||
: base(0, 0) | ||
{ | ||
} | ||
|
||
public override bool IgnoreDuringCodeGeneration => true; | ||
} |
18 changes: 18 additions & 0 deletions
18
Source/Mosa.Compiler.Framework/Instructions/UnstableRegionStart.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright (c) MOSA Project. Licensed under the New BSD License. | ||
|
||
// This code was generated by an automated template. | ||
|
||
namespace Mosa.Compiler.Framework.Instructions; | ||
|
||
/// <summary> | ||
/// UnstableRegionStart | ||
/// </summary> | ||
public sealed class UnstableRegionStart : BaseIRInstruction | ||
{ | ||
public UnstableRegionStart() | ||
: base(0, 0) | ||
{ | ||
} | ||
|
||
public override bool IgnoreDuringCodeGeneration => true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters