Remove broken assert from CodeGen. Better check is done in Sema.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45358 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/pointer-arithmetic.c b/test/CodeGen/pointer-arithmetic.c
index 6c644c6..6b4de91 100644
--- a/test/CodeGen/pointer-arithmetic.c
+++ b/test/CodeGen/pointer-arithmetic.c
@@ -3,3 +3,5 @@
 typedef int Int;
 
 int test1(int *a, Int *b) { return a - b; }
+
+int test2(const char *a, char *b) { return b - a; }