@hans: Would you be happy for me to merge this to the branch after it's been 
committed and gone through buildbot?

It fixes a warning:

  tmp.c:6:19: warning: format specifies type 'intmax_t' (aka 'long long') but 
the argument has type 'intmax_t' (aka 'long') [-Wformat]
    printf("%jd\n", a);
            ~~~     ^
            %jd

emitted when compiling:

  #include <stdio.h>
  #include <stdint.h>
  int main(void) {
    intmax_t a = 0;
    printf("%jd\n", a);
    return 0;
  }


http://reviews.llvm.org/D7127

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/



_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to