New testcase. This now codegens to:
authorChris Lattner <sabre@nondot.org>
Tue, 30 Mar 2004 22:36:52 +0000 (22:36 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 30 Mar 2004 22:36:52 +0000 (22:36 +0000)
max:
        mov %EAX, DWORD PTR [%ESP + 4]
        mov %ECX, DWORD PTR [%ESP + 8]
        cmp %EAX, %ECX
        cmovle %EAX, %ECX
        ret

Someone should really implement passing arguments through registers for
known-internal functions.  :)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12558 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/2004-03-30-Select-Max.llx [new file with mode: 0644]

diff --git a/test/CodeGen/X86/2004-03-30-Select-Max.llx b/test/CodeGen/X86/2004-03-30-Select-Max.llx
new file mode 100644 (file)
index 0000000..292762a
--- /dev/null
@@ -0,0 +1,7 @@
+; RUN: llvm-as < %s | llc -march=x86 | not grep 'j[lgbe]'
+
+int %max(int %A, int %B) {
+  %gt = setgt int %A, %B
+  %R = select bool %gt, int %A, int %B
+  ret int %R
+}