blob: 254494a2423b418cb13d829f2b5c0c4925f014c3 [file] [log] [blame]
Douglas Gregor3e80d8a2012-01-29 20:52:14 +00001// RUN: rm -rf %t
Douglas Gregorfe225e42012-01-29 22:30:38 +00002// RUN: %clang_cc1 -fmodules -fmodule-cache-path %t %s
Douglas Gregor3e80d8a2012-01-29 20:52:14 +00003
4@import __compiler_builtins.float_constants;
5
6float getFltMax() { return FLT_MAX; }
7
8@import __compiler_builtins.limits;
9
10char getCharMax() { return CHAR_MAX; }
11
Douglas Gregorfe225e42012-01-29 22:30:38 +000012// FIXME: Re-enable this test.
13//size_t size; // expected-error{{unknown type name 'size_t'}}