[llvm-commits] [llvm] r168689 - in /llvm/trunk/test/Transforms/SimplifyLibCalls: FPrintF.ll FPuts.ll SPrintF.ll
NAKAMURA Takumi
geek4civic at gmail.com
Tue Nov 27 00:18:09 PST 2012
Author: chapuni
Date: Tue Nov 27 02:18:08 2012
New Revision: 168689
URL: http://llvm.org/viewvc/llvm-project?rev=168689&view=rev
Log:
llvm/test/Transforms/SimplifyLibCalls/SPrintF.ll: Fix datalayout since r168516.
Modified:
llvm/trunk/test/Transforms/SimplifyLibCalls/FPrintF.ll
llvm/trunk/test/Transforms/SimplifyLibCalls/FPuts.ll
llvm/trunk/test/Transforms/SimplifyLibCalls/SPrintF.ll
Modified: llvm/trunk/test/Transforms/SimplifyLibCalls/FPrintF.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyLibCalls/FPrintF.ll?rev=168689&r1=168688&r2=168689&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyLibCalls/FPrintF.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyLibCalls/FPrintF.ll Tue Nov 27 02:18:08 2012
@@ -4,7 +4,7 @@
; This transformation requires the pointer size, as it assumes that size_t is
; the size of a pointer.
-target datalayout = "-p:64:64:64"
+target datalayout = "p:64:64:64"
%struct._IO_FILE = type { i32, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, %struct._IO_marker*, %struct._IO_FILE*, i32, i32, i32, i16, i8, [1 x i8], i8*, i64, i8*, i8*, i32, [52 x i8] }
%struct._IO_marker = type { %struct._IO_marker*, %struct._IO_FILE*, i32 }
Modified: llvm/trunk/test/Transforms/SimplifyLibCalls/FPuts.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyLibCalls/FPuts.ll?rev=168689&r1=168688&r2=168689&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyLibCalls/FPuts.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyLibCalls/FPuts.ll Tue Nov 27 02:18:08 2012
@@ -4,7 +4,7 @@
; This transformation requires the pointer size, as it assumes that size_t is
; the size of a pointer.
-target datalayout = "-p:64:64:64"
+target datalayout = "p:64:64:64"
%struct._IO_FILE = type { i32, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, %struct._IO_marker*, %struct._IO_FILE*, i32, i32, i32, i16, i8, [1 x i8], i8*, i64, i8*, i8*, i32, [52 x i8] }
%struct._IO_marker = type { %struct._IO_marker*, %struct._IO_FILE*, i32 }
Modified: llvm/trunk/test/Transforms/SimplifyLibCalls/SPrintF.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyLibCalls/SPrintF.ll?rev=168689&r1=168688&r2=168689&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyLibCalls/SPrintF.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyLibCalls/SPrintF.ll Tue Nov 27 02:18:08 2012
@@ -5,7 +5,7 @@
; This transformation requires the pointer size, as it assumes that size_t is
; the size of a pointer.
-target datalayout = "-p:64:64:64"
+target datalayout = "p:64:64:64"
@hello = constant [6 x i8] c"hello\00" ; <[6 x i8]*> [#uses=1]
@null = constant [1 x i8] zeroinitializer ; <[1 x i8]*> [#uses=1]
More information about the llvm-commits
mailing list