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