From: Brian Gaeke Date: Wed, 10 Dec 2003 05:06:38 +0000 (+0000) Subject: Don't assume that system headers define 'uint' or 'ulong' as types. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=47c1b6d7403d5df7acbb2d7e93685309c10deded;p=oota-llvm.git Don't assume that system headers define 'uint' or 'ulong' as types. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10356 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CFrontend/2002-07-29-Casts.c b/test/CFrontend/2002-07-29-Casts.c index 6c83336bec4..3666d0b31e4 100644 --- a/test/CFrontend/2002-07-29-Casts.c +++ b/test/CFrontend/2002-07-29-Casts.c @@ -12,9 +12,9 @@ main(int argc, char** argv) unsigned char ubc0, uc2; unsigned short us2, usf1, usd1; int ic3, is3, sif1, sid1; - uint uic4, uis4, uif1, uid1; + unsigned int uic4, uis4, uif1, uid1; long slf1, sld1; - ulong ulf1, uld1; + unsigned long ulf1, uld1; float f1; double d1;