mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	does normal initialization and normal chaining. Change the default AliasAnalysis implementation to NoAlias. Update StandardCompileOpts.h and friends to explicitly request BasicAliasAnalysis. Update tests to explicitly request -basicaa. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116720 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			21 lines
		
	
	
		
			441 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			441 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: opt %s -basicaa -gvn -S | FileCheck %s
 | |
| 
 | |
| %t = type { i32 }
 | |
| declare void @test1f(i8*)
 | |
| 
 | |
| define void @test1(%t* noalias %stuff ) {
 | |
|     %p = getelementptr inbounds %t* %stuff, i32 0, i32 0
 | |
|     %before = load i32* %p
 | |
| 
 | |
|     call void @test1f(i8* null)
 | |
| 
 | |
|     %after = load i32* %p ; <--- This should be a dead load
 | |
|     %sum = add i32 %before, %after
 | |
| 
 | |
|     store i32 %sum, i32* %p
 | |
|     ret void
 | |
| ; CHECK: load
 | |
| ; CHECK-NOT: load
 | |
| ; CHECK: ret void
 | |
| }
 |