repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2002-07-31-SubregFailure.c
blob
15573f9128ad4f822eef5ffe50b5cfebcc1b51fa
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -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