diff options
-rw-r--r-- | clang/test/CodeGen/2008-07-31-promotion-of-compound-pointer-arithmetic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGen/2008-07-31-promotion-of-compound-pointer-arithmetic.c b/clang/test/CodeGen/2008-07-31-promotion-of-compound-pointer-arithmetic.c index e0364d1fda5..746a2f34c96 100644 --- a/clang/test/CodeGen/2008-07-31-promotion-of-compound-pointer-arithmetic.c +++ b/clang/test/CodeGen/2008-07-31-promotion-of-compound-pointer-arithmetic.c @@ -12,12 +12,12 @@ int f0() { } int f1(int *a) { - int b = a - (int*) 1; + long b = a - (int*) 1; a -= (int*) 1; - return b == (int) a; + return b == (long) a; } -int f2(int n) { +int f2(long n) { int *b = n + (int*) 1; n += (int*) 1; return b == (int*) n; |