From 9fcdd0aac73415c6ae226f02910e8dbdb9b25340 Mon Sep 17 00:00:00 2001 From: kudzu_cp <6d05c8c8ef5431987001abfdb2eadc9593ac9498> Date: Sun, 30 Aug 2009 19:41:11 +0000 Subject: [PATCH] --- source2/IL2PCU/Cosmos.IL2CPU.X86/IL/Ldc_I8.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source2/IL2PCU/Cosmos.IL2CPU.X86/IL/Ldc_I8.cs b/source2/IL2PCU/Cosmos.IL2CPU.X86/IL/Ldc_I8.cs index bc220031d..ced986e08 100644 --- a/source2/IL2PCU/Cosmos.IL2CPU.X86/IL/Ldc_I8.cs +++ b/source2/IL2PCU/Cosmos.IL2CPU.X86/IL/Ldc_I8.cs @@ -11,8 +11,7 @@ namespace Cosmos.IL2CPU.X86.IL { public Ldc_I8( Cosmos.IL2CPU.Assembler aAsmblr ) : base( aAsmblr ) { } - public override void Execute( MethodInfo aMethod, ILOpCode aOpCode ) - { + public override void Execute( MethodInfo aMethod, ILOpCode aOpCode ) { new CPUx86.Push { DestinationValue = ( ( OpInt )aOpCode ).Value }; Assembler.StackContents.Push( new StackContent( 8, typeof( long ) ) ); }