diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/fold-call-2.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fold-call-2.ll | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/fold-call-2.ll b/llvm/test/CodeGen/X86/fold-call-2.ll index b5e2606410f..e49de7c6b03 100644 --- a/llvm/test/CodeGen/X86/fold-call-2.ll +++ b/llvm/test/CodeGen/X86/fold-call-2.ll @@ -1,8 +1,17 @@ -; RUN: llc < %s -mtriple=i386-apple-darwin | grep mov | count 1 +; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py +; RUN: llc < %s -mtriple=i386-apple-darwin | FileCheck %s @f = external global void ()* ; <void ()**> [#uses=1] define i32 @main() nounwind { +; CHECK-LABEL: main: +; CHECK: ## %bb.0: ## %entry +; CHECK-NEXT: subl $12, %esp +; CHECK-NEXT: movl L_f$non_lazy_ptr, %eax +; CHECK-NEXT: calll *(%eax) +; CHECK-NEXT: xorl %eax, %eax +; CHECK-NEXT: addl $12, %esp +; CHECK-NEXT: retl entry: load void ()*, void ()** @f, align 8 ; <void ()*>:0 [#uses=1] tail call void %0( ) nounwind |