diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2009-03-25 20:30:19 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2009-03-25 20:30:19 +0000 |
| commit | 1e550e15cc115eaeac88982ebea58a2e37f5cfca (patch) | |
| tree | 68d0c3e394c428aaa526f129fb0d717fe060dcb1 | |
| parent | 2e9f42bed5578cde090bf7ff701572a2504b1297 (diff) | |
| download | bcm5719-llvm-1e550e15cc115eaeac88982ebea58a2e37f5cfca.tar.gz bcm5719-llvm-1e550e15cc115eaeac88982ebea58a2e37f5cfca.zip | |
Add a test case for PR3779: when to promote the function return value.
llvm-svn: 67702
| -rw-r--r-- | llvm/test/CodeGen/X86/sext-ret-val.ll | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/sext-ret-val.ll b/llvm/test/CodeGen/X86/sext-ret-val.ll new file mode 100644 index 00000000000..946e6c78892 --- /dev/null +++ b/llvm/test/CodeGen/X86/sext-ret-val.ll @@ -0,0 +1,16 @@ +; RUN: llvm-as < %s | llc -march=x86 | grep movzbl | count 1 +; rdar://6699246 + +define signext i8 @t1(i8* %A) nounwind readnone ssp { +entry: + %0 = icmp ne i8* %A, null + %1 = zext i1 %0 to i8 + ret i8 %1 +} + +define i8 @t2(i8* %A) nounwind readnone ssp { +entry: + %0 = icmp ne i8* %A, null + %1 = zext i1 %0 to i8 + ret i8 %1 +} |

