diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-12-10 05:06:38 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-12-10 05:06:38 +0000 |
commit | 47c1b6d7403d5df7acbb2d7e93685309c10deded (patch) | |
tree | cd19ba77f9ae7cc4142a6e1137833d6ad93e1ef1 /test | |
parent | c745b4950d20e96a6233a43a3f3350e5a394b233 (diff) |
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
Diffstat (limited to 'test')
-rw-r--r-- | test/CFrontend/2002-07-29-Casts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CFrontend/2002-07-29-Casts.c b/test/CFrontend/2002-07-29-Casts.c index 6c83336bec..3666d0b31e 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; |