mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	GlobalAlias handling used to be after GlobalValue handling, which meant it was, in practice, dead code. r220165 moved GlobalAlias handling to be before GlobalValue handling, but also moved it to be before the max depth check, causing an assert due to a recursion depth limit violation. This moves GlobalAlias handling forward to where it's safe, and changes the GlobalValue handling to only look at GlobalObjects. Differential Revision: http://reviews.llvm.org/D6758 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224765 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			25 lines
		
	
	
		
			770 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			770 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; RUN: opt < %s -instcombine -S | FileCheck %s
 | 
						|
 | 
						|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
 | 
						|
target triple = "x86_64-pc-windows-msvc"
 | 
						|
 | 
						|
%class.A = type { i32 (...)** }
 | 
						|
 | 
						|
@0 = constant [1 x i8*] zeroinitializer
 | 
						|
 | 
						|
@vtbl = alias getelementptr inbounds ([1 x i8*]* @0, i32 0, i32 0)
 | 
						|
 | 
						|
define i32 (%class.A*)* @test() {
 | 
						|
; CHECK-LABEL: test
 | 
						|
entry:
 | 
						|
  br i1 undef, label %for.body, label %for.end
 | 
						|
 | 
						|
for.body:                                         ; preds = %for.body, %entry
 | 
						|
  br i1 undef, label %for.body, label %for.end
 | 
						|
 | 
						|
for.end:                                          ; preds = %for.body, %entry
 | 
						|
  %A = phi i32 (%class.A*)** [ bitcast (i8** @vtbl to i32 (%class.A*)**), %for.body ], [ null, %entry ]
 | 
						|
  %B = load i32 (%class.A*)** %A
 | 
						|
  ret i32 (%class.A*)* %B
 | 
						|
}
 |