diff options
| author | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-18 00:31:54 +0200 |
|---|---|---|
| committer | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-18 00:31:54 +0200 |
| commit | 268a53de823a6750d6256ee1fb1e7707b4b45740 (patch) | |
| tree | 42c1799a9a82b2f7d9790ee9fe181d72a7274751 /support/regression/tests/bug-2458.c | |
| download | sdcc-gas-268a53de823a6750d6256ee1fb1e7707b4b45740.tar.gz | |
sdcc-3.9.0 fork implementing GNU assembler syntax
This fork aims to provide better support for stm8-binutils
Diffstat (limited to 'support/regression/tests/bug-2458.c')
| -rw-r--r-- | support/regression/tests/bug-2458.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/support/regression/tests/bug-2458.c b/support/regression/tests/bug-2458.c new file mode 100644 index 0000000..f35bbb6 --- /dev/null +++ b/support/regression/tests/bug-2458.c @@ -0,0 +1,39 @@ +/* + bug-2458.c + + Test suite for bug 2458. + Copyright 2016 Peter Dons Tychsen (pdt at dontech dot dk) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2, or (at your option) any + later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + In other words, you are welcome to use, share and improve this program. + You are forbidden to forbid anyone else to use, share and improve + what you give them. Help stamp out software-hoarding! +*/ + +#include <testfwk.h> + +static unsigned long testLong = 0x40000; +static unsigned char testResult; +static unsigned char testShift = 0x12; + +void testBug (void) +{ + testResult = ((((unsigned long)1) << testShift) & testLong) && 1; + ASSERT(testResult); + testResult = (0x1000 + testLong) && 1; + ASSERT(testResult); +} + |
