Home | History | Annotate | Download | only in Misc
      1 // RUN: %clang_cc1 %s -emit-html -o -
      2 
      3 // rdar://6562329
      4 #line 42 "foo.c"
      5 
      6 // PR3635
      7 #define F(fmt, ...) fmt, ## __VA_ARGS__
      8 int main(int argc, char **argv) {
      9   return F(argc, 1);
     10 }
     11 
     12 // PR3798
     13 #define FOR_ALL_FILES(f,i) i
     14 
     15 #if 0
     16   FOR_ALL_FILES(f) { }
     17 #endif
     18 
     19