diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-08-17 00:46:16 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-08-17 00:46:16 +0000 |
commit | f9b1510576b2039ed1a32a3696efac07ed815171 (patch) | |
tree | 68fe203f268acda5e47cba936fcdded72c64aa76 /clang/test/Sema/builtins.c | |
parent | 15a2fccb787b4040b4f5b514b21b6c6337c48306 (diff) | |
download | bcm5719-llvm-f9b1510576b2039ed1a32a3696efac07ed815171.tar.gz bcm5719-llvm-f9b1510576b2039ed1a32a3696efac07ed815171.zip |
Refactor all diagnosing of TypoCorrections through a common function, in
preparation for teaching this function how to diagnose a correction that
includes importing a module.
llvm-svn: 188602
Diffstat (limited to 'clang/test/Sema/builtins.c')
-rw-r--r-- | clang/test/Sema/builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/builtins.c b/clang/test/Sema/builtins.c index d525ac012e1..33b09543819 100644 --- a/clang/test/Sema/builtins.c +++ b/clang/test/Sema/builtins.c @@ -2,7 +2,7 @@ // This test needs to set the target because it uses __builtin_ia32_vec_ext_v4si int test1(float a, int b) { - return __builtin_isless(a, b); + return __builtin_isless(a, b); // expected-note {{declared here}} } int test2(int a, int b) { return __builtin_islessequal(a, b); // expected-error {{floating point type}} |