mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-01 00:17:01 +00:00 
			
		
		
		
	The alignment of allocated space was wrong, see Bugzila 17345. Done by Zvi Rackover <zvi.rackover@intel.com>. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192573 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			10 lines
		
	
	
		
			262 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			262 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc -mtriple=x86_64-linux < %s | FileCheck %s
 | |
| define i32 @A(i32 %Size) {
 | |
| ; CHECK:  subq    %rcx, %rax
 | |
| ; CHECK:  andq    $-128, %rax
 | |
| ; CHECK:  movq    %rax, %rsp
 | |
|   %A = alloca i8, i32 %Size, align 128
 | |
|   %A_addr = ptrtoint i8* %A to i32
 | |
|   ret i32 %A_addr
 | |
| }
 |