mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
4575ab2186
XFAIL tests covered by the PR. These will be un-XFAILed as they are fixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36093 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
146 B
Plaintext
9 lines
146 B
Plaintext
/* RUN: %llvmgcc -xc %s -c -o - | llvm-dis | not grep cast
|
|
XFAIL: *
|
|
*/
|
|
|
|
void test(int* array, long long N) {
|
|
array[N] = N[array] = 33;
|
|
}
|
|
|