[llvm-commits] [llvm] r52811 - /llvm/trunk/test/CodeGen/X86/2006-11-28-Memcpy.ll
Chris Lattner
sabre at nondot.org
Thu Jun 26 20:14:20 PDT 2008
Author: lattner
Date: Thu Jun 26 22:14:20 2008
New Revision: 52811
URL: http://llvm.org/viewvc/llvm-project?rev=52811&view=rev
Log:
test doesn't need eh info
Modified:
llvm/trunk/test/CodeGen/X86/2006-11-28-Memcpy.ll
Modified: llvm/trunk/test/CodeGen/X86/2006-11-28-Memcpy.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2006-11-28-Memcpy.ll?rev=52811&r1=52810&r2=52811&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/2006-11-28-Memcpy.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2006-11-28-Memcpy.ll Thu Jun 26 22:14:20 2008
@@ -8,7 +8,7 @@
@bytes = constant [4 x i8] c"\AA\BB\CC\DD" ; <[4 x i8]*> [#uses=1]
@bytes2 = global [4 x i8] c"\AA\BB\CC\DD" ; <[4 x i8]*> [#uses=1]
-define i32 @test1() {
+define i32 @test1() nounwind {
%y = alloca i32 ; <i32*> [#uses=2]
%c = bitcast i32* %y to i8* ; <i8*> [#uses=1]
%z = getelementptr [4 x i8]* @bytes, i32 0, i32 0 ; <i8*> [#uses=1]
@@ -19,7 +19,7 @@
ret i32 0
}
-define void @test2() {
+define void @test2() nounwind {
%y = alloca i32 ; <i32*> [#uses=2]
%c = bitcast i32* %y to i8* ; <i8*> [#uses=1]
%z = getelementptr [4 x i8]* @bytes2, i32 0, i32 0 ; <i8*> [#uses=1]
More information about the llvm-commits
mailing list