If SSE2 is available, x86 should pass first 3 f32/f64 arguments in XMM registers...
[oota-llvm.git] / test / FrontendC / 2005-01-02-PointerDifference.c
1 // RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep -v div
2
3 int Diff(int *P, int *Q) { return P-Q; }