diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-18 03:32:24 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-18 03:32:24 +0000 |
commit | dc78bd9f79960a9ef0589a7831248880305d826e (patch) | |
tree | 3057f7c4be32217d64c3be66ccc647c95df0d5be /clang/test/Lexer/token-concat.c | |
parent | eb843bedf9dba7e823987c53e2e31586d3734b8c (diff) | |
download | bcm5719-llvm-dc78bd9f79960a9ef0589a7831248880305d826e.tar.gz bcm5719-llvm-dc78bd9f79960a9ef0589a7831248880305d826e.zip |
Fix -E mismatch; an identifier followed by a numeric constant does not
require a space (to avoid concatenation) if the numeric constant had a
leading period.
- PR3819.
llvm-svn: 67163
Diffstat (limited to 'clang/test/Lexer/token-concat.c')
-rw-r--r-- | clang/test/Lexer/token-concat.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Lexer/token-concat.c b/clang/test/Lexer/token-concat.c new file mode 100644 index 00000000000..003344fc0a2 --- /dev/null +++ b/clang/test/Lexer/token-concat.c @@ -0,0 +1,4 @@ +// RUN: clang -E -x c -o %t %s && +// RUN: grep 'IDENT.2' %t + +IDENT.2 |