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
Fix edge cases in handling basic block split.
[llvm-complete.git]
/
test
/
Other
/
2004-08-16-PackedGlobalConstant.ll
blob
01b0d5dd4050b6d9b5ffb18117254879290802af
1
; RUN: llvm-upgrade < %s | llvm-as | llvm-dis
2
3
%foo = global <2 x int> <int 0, int 1>;
4
%bar = uninitialized global <2 x int>;
5
6
implementation ; Functions:
7
8
void %main()
9
{
10
%t0 = load <2 x int>* %foo;
11
store <2 x int> %t0, <2 x int>* %bar
12
ret void
13
}