blob: 73c267ad30dd2061797c7d6d26df186987c021f4 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3
4void foo() {}
5
6void bar() {
7 foo(1, 2, 3); /* Too many arguments passed */
8}