forked from OSchip/llvm-project
Fix for PR1567, which involves a weird bug on non-32bit architectures and silly C type sizes.
llvm-svn: 40451
This commit is contained in:
parent
f97dbcb4ba
commit
1b37d5b019
|
@ -1,6 +1,6 @@
|
|||
// RUN: %llvmgcc -S %s -o - -O | grep ashr
|
||||
// RUN: %llvmgcc -S %s -o - -O | not grep sdiv
|
||||
|
||||
int test(int *A, int *B) {
|
||||
long long test(int *A, int *B) {
|
||||
return A-B;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue