repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git]
/
test
/
FrontendC
/
2002-07-31-SubregFailure.c
blob
72fcb496cb004135fb344f38893c68175229b6b8
1
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
4
typedef
union
{
5
long
(*
ap
)[
4
];
6
}
ptrs
;
7
8
void
DoAssignIteration
() {
9
ptrs abase
;
10
abase
.
ap
+=
27
;
11
Assignment
(*
abase
.
ap
);
12
}
13
14