CorebootModulePkg: Add 'll' suffix to avoid gcc 4.4 compile fail

Add ll siffix to 64-bit constants, otherwise gcc44 reports error:
integer constant is too large for 'long' type

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Scott Duplichan <scott@notabs.org>
---

Index: CorebootModulePkg/CbSupportPei/CbSupportPei.c
===================================================================
--- CorebootModulePkg/CbSupportPei/CbSupportPei.c	(revision 17108)
+++ CorebootModulePkg/CbSupportPei/CbSupportPei.c	(working copy)
@@ -238,7 +238,7 @@
        EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE |
        EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE
     ),
-    (EFI_PHYSICAL_ADDRESS)(0x100000000),
+    (EFI_PHYSICAL_ADDRESS)(0x100000000ll),
     HighMemorySize
     );  	
   }  
