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:
Chandler Carruth 2007-07-23 22:42:15 +00:00
parent f97dbcb4ba
commit 1b37d5b019
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}