blob: 206cdd98da0bf04abb085d7a804fd8e0cf02acac [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattnerff477022002-10-12 23:37:34 +00003
4void foo() {}
5
6void bar() {
Jeff Cohenb02fbfc2005-04-23 21:26:11 +00007 foo(1, 2, 3); /* Too many arguments passed */
Chris Lattnerff477022002-10-12 23:37:34 +00008}