[llvm-commits] [llvm] r82182 - /llvm/trunk/test/CodeGen/X86/personality.ll
Chris Lattner
sabre at nondot.org
Thu Sep 17 16:56:42 PDT 2009
Author: lattner
Date: Thu Sep 17 18:56:41 2009
New Revision: 82182
URL: http://llvm.org/viewvc/llvm-project?rev=82182&view=rev
Log:
make this testcase check darwin32 also
Modified:
llvm/trunk/test/CodeGen/X86/personality.ll
Modified: llvm/trunk/test/CodeGen/X86/personality.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/personality.ll?rev=82182&r1=82181&r2=82182&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/personality.ll (original)
+++ llvm/trunk/test/CodeGen/X86/personality.ll Thu Sep 17 18:56:41 2009
@@ -1,4 +1,5 @@
; RUN: llc < %s -mtriple=x86_64-apple-darwin9 | FileCheck %s -check-prefix=X64
+; RUN: llc < %s -mtriple=i386-apple-darwin9 | FileCheck %s -check-prefix=X32
; PR1632
define void @_Z1fv() {
@@ -39,3 +40,10 @@
; X64: Leh_frame_common_begin:
; X64: .long ___gxx_personality_v0 at GOTPCREL+4
+
+; X32: .section __IMPORT,__pointers,non_lazy_symbol_pointers
+; X32: L___gxx_personality_v0$non_lazy_ptr:
+; X32: .indirect_symbol ___gxx_personality_v0
+; ....
+; X32: Leh_frame_common_begin:
+; X32: .long L___gxx_personality_v0$non_lazy_ptr-
\ No newline at end of file
More information about the llvm-commits
mailing list