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

Side by Side Diff: test/Lexer/has_extension_cxx.cpp

Issue 184973004: Prep for merging 3.4: Undo changes from 3.3 branch (Closed) Base URL: http://git.chromium.org/native_client/pnacl-clang.git@master
Patch Set: Created 6 years, 9 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 unified diff | Download patch
« no previous file with comments | « test/Driver/sanitizer-ld.c ('k') | test/Lexer/has_feature_cxx0x.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // RUN: %clang_cc1 -E %s -o - | FileCheck %s 1 // RUN: %clang_cc1 -E %s -o - | FileCheck %s
2 2
3 // CHECK: c_static_assert 3 // CHECK: c_static_assert
4 #if __has_extension(c_static_assert) 4 #if __has_extension(c_static_assert)
5 int c_static_assert(); 5 int c_static_assert();
6 #endif 6 #endif
7 7
8 // CHECK: c_generic_selections 8 // CHECK: c_generic_selections
9 #if __has_extension(c_generic_selections) 9 #if __has_extension(c_generic_selections)
10 int c_generic_selections(); 10 int c_generic_selections();
(...skipping 29 matching lines...) Expand all
40 int has_rvalue_references(); 40 int has_rvalue_references();
41 #endif 41 #endif
42 42
43 #if __has_extension(cxx_local_type_template_args) 43 #if __has_extension(cxx_local_type_template_args)
44 int has_local_type_template_args(); 44 int has_local_type_template_args();
45 #else 45 #else
46 int no_local_type_template_args(); 46 int no_local_type_template_args();
47 #endif 47 #endif
48 48
49 // CHECK: has_local_type_template_args 49 // CHECK: has_local_type_template_args
50
51 #if __has_extension(cxx_binary_literals)
52 int has_binary_literals();
53 #endif
54
55 // CHECK: has_binary_literals
OLDNEW
« no previous file with comments | « test/Driver/sanitizer-ld.c ('k') | test/Lexer/has_feature_cxx0x.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698