mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
add a note
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26448 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5126984b1d
commit
00d18f0879
@ -434,3 +434,21 @@ int f(signed char *a, _Bool b, _Bool c) {
|
||||
if (c) *a = t;
|
||||
}
|
||||
|
||||
===-------------------------------------------------------------------------===
|
||||
|
||||
This:
|
||||
int test(unsigned *P) { return *P >> 24; }
|
||||
|
||||
Should compile to:
|
||||
|
||||
_test:
|
||||
lbz r3,0(r3)
|
||||
blr
|
||||
|
||||
not:
|
||||
|
||||
_test:
|
||||
lwz r2, 0(r3)
|
||||
srwi r3, r2, 24
|
||||
blr
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user