repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git]
/
test
/
Linker
/
type-unique-name.ll
blob
191b6ddb2352f8ea3c6bb3748a44a788d2546832
1
; RUN: llvm-link -S %s %p/Inputs/type-unique-name.ll | FileCheck %s
2
3
; Test that we keep the type name
4
; CHECK: %abc = type { i8 }
5
6
%abc = type opaque
7
8
declare %abc* @f()
9
10
define %abc* @g() {
11
%x = call %abc* @f()
12
ret %abc* %x
13
}