mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	Essentially the same as the GEP change in r230786.
A similar migration script can be used to update test cases, though a few more
test case improvements/changes were required this time around: (r229269-r229278)
import fileinput
import sys
import re
pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)")
for line in sys.stdin:
  sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line))
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7649
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			779 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			779 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; RUN: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s
 | 
						|
; CHECK: __hexagon_adddf3
 | 
						|
; CHECK: __hexagon_subdf3
 | 
						|
 | 
						|
define void @foo(double* %acc, double %num, double %num2) nounwind {
 | 
						|
entry:
 | 
						|
  %acc.addr = alloca double*, align 4
 | 
						|
  %num.addr = alloca double, align 8
 | 
						|
  %num2.addr = alloca double, align 8
 | 
						|
  store double* %acc, double** %acc.addr, align 4
 | 
						|
  store double %num, double* %num.addr, align 8
 | 
						|
  store double %num2, double* %num2.addr, align 8
 | 
						|
  %0 = load double*, double** %acc.addr, align 4
 | 
						|
  %1 = load double, double* %0
 | 
						|
  %2 = load double, double* %num.addr, align 8
 | 
						|
  %add = fadd double %1, %2
 | 
						|
  %3 = load double, double* %num2.addr, align 8
 | 
						|
  %sub = fsub double %add, %3
 | 
						|
  %4 = load double*, double** %acc.addr, align 4
 | 
						|
  store double %sub, double* %4
 | 
						|
  ret void
 | 
						|
}
 |