diff options
| author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-19 20:19:50 +0000 |
|---|---|---|
| committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-19 20:19:50 +0000 |
| commit | 5f04c7dbd152f7c65b98b721142fe26d58bb30df (patch) | |
| tree | 3f351db48ca0d62f6a39fdefd0d602b6155945b0 | |
| parent | 675958603e3cabc4cc4e25d6470b00521961320d (diff) | |
| download | ppe42-gcc-5f04c7dbd152f7c65b98b721142fe26d58bb30df.tar.gz ppe42-gcc-5f04c7dbd152f7c65b98b721142fe26d58bb30df.zip | |
2002-11-19 �Eric Botcazou �<ebotcazou@libertysurf.fr>
* gcc.c-torture/compile/20021119-1.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59276 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/20021119-1.c | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ec205b05aa4..cb13824c972 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-11-19 Eric Botcazou <ebotcazou@libertysurf.fr> + + * gcc.c-torture/compile/20021119-1.c: New test. + 2002-11-19 Jason Thorpe <thorpej@wasabisystems.com> * gcc.dg/duff-1.c: New test. diff --git a/gcc/testsuite/gcc.c-torture/compile/20021119-1.c b/gcc/testsuite/gcc.c-torture/compile/20021119-1.c new file mode 100644 index 00000000000..d4306b89b99 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/20021119-1.c @@ -0,0 +1,11 @@ +/* PR c/8588 */ +/* Contributed by Volker Reichelt. */ + +/* Verify that GCC converts integer constants + in shift operations. */ + +void foo() +{ + unsigned int i, j; + j = (i >> 0xf0); +} |

