mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
a434ae74e7
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4563 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
561 B
LLVM
21 lines
561 B
LLVM
; This file contains a list of situations where node folding should happen...
|
|
|
|
implementation
|
|
|
|
void %test1({int, int} * %X) {
|
|
getelementptr {int, int} * %X, long 0
|
|
%Y = cast {int, int} * %X to sbyte*
|
|
%Z = getelementptr sbyte* %Y, long 7
|
|
store sbyte 6, sbyte *%Z
|
|
ret void
|
|
}
|
|
|
|
void %test2({int, int} * %X) {
|
|
getelementptr {int, int} * %X, long 0
|
|
%Y = cast {int, int} * %X to {sbyte,sbyte,sbyte,sbyte,sbyte,sbyte,sbyte,sbyte} *
|
|
%Z = getelementptr {sbyte,sbyte,sbyte,sbyte,sbyte,sbyte,sbyte,sbyte}* %Y, long 0, ubyte 7
|
|
store sbyte 6, sbyte *%Z
|
|
ret void
|
|
}
|
|
|