summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/bswap-inline-asm.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/bswap-inline-asm.ll')
-rw-r--r--test/CodeGen/X86/bswap-inline-asm.ll5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/CodeGen/X86/bswap-inline-asm.ll b/test/CodeGen/X86/bswap-inline-asm.ll
index c44d845c83..91f8310361 100644
--- a/test/CodeGen/X86/bswap-inline-asm.ll
+++ b/test/CodeGen/X86/bswap-inline-asm.ll
@@ -1,6 +1,7 @@
; RUN: llvm-as < %s | llc -march=x86-64 > %t
; RUN: not grep APP %t
; RUN: grep bswapq %t | count 2
+; RUN: grep bswapl %t | count 1
define i64 @foo(i64 %x) nounwind {
%asmtmp = tail call i64 asm "bswap $0", "=r,0,~{dirflag},~{fpsr},~{flags}"(i64 %x) nounwind
@@ -10,3 +11,7 @@ define i64 @bar(i64 %x) nounwind {
%asmtmp = tail call i64 asm "bswapq ${0:q}", "=r,0,~{dirflag},~{fpsr},~{flags}"(i64 %x) nounwind
ret i64 %asmtmp
}
+define i32 @pen(i32 %x) nounwind {
+ %asmtmp = tail call i32 asm "bswapl ${0:q}", "=r,0,~{dirflag},~{fpsr},~{flags}"(i32 %x) nounwind
+ ret i32 %asmtmp
+}