pass/return structs of char and short as i8/i16 to avoid
aweful through-memory coersion, just like we do for i32 now.
llvm-svn: 107078
diff --git a/clang/test/CodeGenCXX/member-functions.cpp b/clang/test/CodeGenCXX/member-functions.cpp
index 087e62c..b363552 100644
--- a/clang/test/CodeGenCXX/member-functions.cpp
+++ b/clang/test/CodeGenCXX/member-functions.cpp
@@ -58,6 +58,6 @@
void test3() {
T t1, t2;
- // RUN: grep "call i64 @_ZN1TplERKS_" %t
+ // RUN: grep "call i8 @_ZN1TplERKS_" %t
T result = t1 + t2;
}