commit | e78c1ead786769480ff2f6da2150ac53131c385f | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Thu Jan 31 04:12:50 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Thu Jan 31 04:12:50 2008 +0000 |
tree | 260cc274407e56a365b53fd0eb031db5cfd7b8d8 | |
parent | c48b8e4f81634736ffe9651e3f9fd82122022b1f [diff] [blame] |
Fix PR1921 by promoting negative indices to intptrty. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46599 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/exprs.c b/test/CodeGen/exprs.c index 9115369..16b63f8 100644 --- a/test/CodeGen/exprs.c +++ b/test/CodeGen/exprs.c
@@ -17,3 +17,9 @@ _Bool test2b; int test2() {if (test2b);} +// PR1921 +int test3() { + const unsigned char *bp; + bp -= (short)1; +} +