mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-22 04:05:05 +00:00
8 lines
117 B
Plaintext
8 lines
117 B
Plaintext
|
/* RUN: llvmgcc -xc %s -c -o - | dis | not grep cast
|
||
|
*/
|
||
|
|
||
|
void test(int* array, long long N) {
|
||
|
array[N] = 33;
|
||
|
}
|
||
|
|