mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
601 B
26 lines
601 B
using ICSharpCode.Decompiler.Disassembler; |
|
using Mono.Cecil; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace ICSharpCode.Decompiler.IL |
|
{ |
|
interface ISupportsUnalignedPrefix |
|
{ |
|
/// <summary> |
|
/// Returns the alignment specified by the 'unaligned' prefix; or 0 if there was no 'unaligned' prefix. |
|
/// </summary> |
|
byte UnalignedPrefix { get; set; } |
|
} |
|
|
|
interface ISupportsVolatilePrefix |
|
{ |
|
/// <summary> |
|
/// Gets/Sets whether the memory access is volatile. |
|
/// </summary> |
|
bool IsVolatile { get; set; } |
|
} |
|
}
|
|
|