mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	This adds the printing of more load commands, so that the normal load commands in a typical X86 Mach-O executable can all be printed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217172 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			11 lines
		
	
	
		
			354 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			354 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
// RUN: llvm-mc -triple x86_64-apple-darwin %s -filetype=obj -o - | macho-dump | FileCheck %s
 | 
						|
 | 
						|
// Test the formation of the version-min load command in the MachO.
 | 
						|
// use a nonsense but well formed version.
 | 
						|
.macosx_version_min 25,3,1
 | 
						|
// CHECK:  (('command', 36)
 | 
						|
// CHECK:   ('size', 16)
 | 
						|
// CHECK:   ('version, 1639169)
 | 
						|
// CHECK:   ('sdk, 0)
 | 
						|
// CHECK:  ),
 |