diff options
Diffstat (limited to 'test/kr-function-argument-promotion.c')
-rw-r--r-- | test/kr-function-argument-promotion.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/kr-function-argument-promotion.c b/test/kr-function-argument-promotion.c deleted file mode 100644 index 7592da1..0000000 --- a/test/kr-function-argument-promotion.c +++ /dev/null @@ -1,10 +0,0 @@ -int f(c) - unsigned char c; -{ - return c; -} - -int main(void) -{ - return f(0x100); -} |