projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39675fe
)
Permit ABIs where the caller extends the result (test change).
author
Tim Northover
<Tim.Northover@arm.com>
Thu, 7 Feb 2013 15:11:36 +0000
(15:11 +0000)
committer
Tim Northover
<Tim.Northover@arm.com>
Thu, 7 Feb 2013 15:11:36 +0000
(15:11 +0000)
This test was written to make sure *something* sane is generated, not
to test any ABI's signedness semantics.
This should allow the test to pass if AArch64 is the default target.
llvm-svn: 174618
clang/test/CodeGenCXX/builtins.cpp
patch
|
blob
|
history
diff --git
a/clang/test/CodeGenCXX/builtins.cpp
b/clang/test/CodeGenCXX/builtins.cpp
index 0629c31015c76b8c63b722286c33fb261e6c03a8..c9b0bff0f2e21dd08b947e05fc7a6ccede77970f 100644
(file)
--- a/
clang/test/CodeGenCXX/builtins.cpp
+++ b/
clang/test/CodeGenCXX/builtins.cpp
@@
-4,6
+4,6
@@
extern "C" char memmove();
int main() {
- // CHECK: call
signext i8
@memmove()
+ // CHECK: call
{{signext i8|i8}}
@memmove()
return memmove();
}