diff options
| author | 2025-11-15 18:54:21 +0100 | |
|---|---|---|
| committer | 2025-11-15 18:54:21 +0100 | |
| commit | 1910d875cfcad320cbb87c5e8c846d5c53846a1a (patch) | |
| tree | 0c92eeb982f9894ed5701c4713e341f350945f88 /test | |
| parent | 650de3195a9631c9f2c777df5ecf1c6ce26c0430 (diff) | |
isel: don't incorrectly clamp constant lhs of shift operation
Diffstat (limited to 'test')
| -rw-r--r-- | test/varargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/varargs.c b/test/varargs.c index ff7d41d..89ab21c 100644 --- a/test/varargs.c +++ b/test/varargs.c @@ -13,5 +13,5 @@ int sum(int x, ...) { } int main() { - printf("%d\n", sum(1,2,3,4,5,6,7,0,0)); + printf("%d\n", sum(1,2,3,4,5,6,5.5,7,0,0)); } |