commit | 8ff296496de0970c8d6d72320a1427a926d7ef14 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Jun 28 21:59:07 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Jun 28 21:59:07 2010 +0000 |
tree | c7d6dc187f3426532e325f7d3e4c19b001537daa | |
parent | 1090a9ba0902380dbd97d0a500daa4c373712df9 [diff] [blame] |
pass/return structs of char and short as i8/i16 to avoid aweful through-memory coersion, just like we do for i32 now. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107078 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGenCXX/member-functions.cpp b/test/CodeGenCXX/member-functions.cpp index 087e62c..b363552 100644 --- a/test/CodeGenCXX/member-functions.cpp +++ b/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; }