Add remaining AVX instructions (most of them dealing with GR64 destinations. This...
[oota-llvm.git] / test / FrontendC / 2002-10-12-TooManyArguments.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
4 void foo() {}
5
6 void bar() {
7   foo(1, 2, 3);  /* Too many arguments passed */
8 }