diff options
author | Chris Lattner <sabre@nondot.org> | 2006-08-12 18:11:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-08-12 18:11:24 +0000 |
commit | 2c5c421203cfe334f732fa6dc26a9eb75ee35ae0 (patch) | |
tree | e9daad887815d1ec5c9164784f2d285d18d27e54 /clang/test/Parser/expressions.c | |
parent | 20c6a45a3c061852ed5214b0be7150befd7edef2 (diff) | |
download | bcm5719-llvm-2c5c421203cfe334f732fa6dc26a9eb75ee35ae0.tar.gz bcm5719-llvm-2c5c421203cfe334f732fa6dc26a9eb75ee35ae0.zip |
add test4
llvm-svn: 38886
Diffstat (limited to 'clang/test/Parser/expressions.c')
-rw-r--r-- | clang/test/Parser/expressions.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/test/Parser/expressions.c b/clang/test/Parser/expressions.c index a5214509d83..13e34099c89 100644 --- a/clang/test/Parser/expressions.c +++ b/clang/test/Parser/expressions.c @@ -16,6 +16,10 @@ int test2(int a, int b) { return a ? a,b : a; } -int test3(int a, int b) { +int test3(int a, int b, int c) { return a = b = c; } + +int test4() { + test4(); +} |