Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: gcc/gcc/testsuite/gcc.dg/format/ms-format1.c

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/dfp/usual-arith-conv-const.c ('k') | gcc/gcc/testsuite/gcc.dg/func-args-1.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/gcc.dg/format/ms-format1.c
diff --git a/gcc/gcc/testsuite/gcc.dg/format/ms-format1.c b/gcc/gcc/testsuite/gcc.dg/format/ms-format1.c
index 81c21d911e5844a8e17ae491be31a1b154e1069f..e8f739dce35ff064445ce0aaa017d35f4db8a9c2 100644
--- a/gcc/gcc/testsuite/gcc.dg/format/ms-format1.c
+++ b/gcc/gcc/testsuite/gcc.dg/format/ms-format1.c
@@ -8,10 +8,16 @@
#define USE_SYSTEM_FORMATS
#include "format.h"
+enum en1 { A=0, B=1 };
+typedef enum { _A=0, _B=1 } en2;
+
void
-foo (int i, long long ll, size_t z)
+foo (int i, long l, long long ll, size_t z, enum en1 e1, en2 e2)
{
printf ("%I32d", i);
+ printf ("%I32d", l);
+ printf ("%I32d", e1);
+ printf ("%I32d", e2);
printf ("%I64x", ll);
printf ("%Ix", z);
}
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/dfp/usual-arith-conv-const.c ('k') | gcc/gcc/testsuite/gcc.dg/func-args-1.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698