Add test case from PR5763

llvm-svn: 93190
This commit is contained in:
Douglas Gregor 2010-01-11 21:58:49 +00:00
parent f0d26d4b74
commit 7419ce72ae
1 changed files with 7 additions and 0 deletions

View File

@ -43,3 +43,10 @@ int f2() {
IntPtrPtr j = 0;
return i != j;
}
// PR5763
typedef double Matrix4[4][4];
bool f(Matrix4 m1, const Matrix4 m2) {
return m1 != m2;
}