[llvm-commits] [polly] r170742 - in /polly/branches/release_32/test: CodeGen/20120316-InvalidCast.ll CodeGen/20120403-RHS-type-mismatch.ll ScheduleOptimizer/2012-03-16-Empty-Domain.ll ScopInfo/2012-03-16-Crash-because-of-unsigned-in-scev.ll
Tobias Grosser
grosser at fim.uni-passau.de
Thu Dec 20 12:18:22 PST 2012
Author: grosser
Date: Thu Dec 20 14:18:22 2012
New Revision: 170742
URL: http://llvm.org/viewvc/llvm-project?rev=170742&view=rev
Log:
Fix tests with broken datalayout strings.
Buildbot failure at r168785.
Merged from: https://llvm.org/svn/llvm-project/polly/trunk@168791
Modified:
polly/branches/release_32/test/CodeGen/20120316-InvalidCast.ll
polly/branches/release_32/test/CodeGen/20120403-RHS-type-mismatch.ll
polly/branches/release_32/test/ScheduleOptimizer/2012-03-16-Empty-Domain.ll
polly/branches/release_32/test/ScopInfo/2012-03-16-Crash-because-of-unsigned-in-scev.ll
Modified: polly/branches/release_32/test/CodeGen/20120316-InvalidCast.ll
URL: http://llvm.org/viewvc/llvm-project/polly/branches/release_32/test/CodeGen/20120316-InvalidCast.ll?rev=170742&r1=170741&r2=170742&view=diff
==============================================================================
--- polly/branches/release_32/test/CodeGen/20120316-InvalidCast.ll (original)
+++ polly/branches/release_32/test/CodeGen/20120316-InvalidCast.ll Thu Dec 20 14:18:22 2012
@@ -1,6 +1,6 @@
; RUN: opt %loadPolly %defaultOpts -polly-codegen %s
-target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32f64:64:64-f32:32:32-a0:0-n32"
+target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32-f64:64:64-f32:32:32-a0:0-n32"
target triple = "hexagon-unknown-linux-gnu"
define void @fixup_gotos(i32* %A, i32* %data) nounwind {
Modified: polly/branches/release_32/test/CodeGen/20120403-RHS-type-mismatch.ll
URL: http://llvm.org/viewvc/llvm-project/polly/branches/release_32/test/CodeGen/20120403-RHS-type-mismatch.ll?rev=170742&r1=170741&r2=170742&view=diff
==============================================================================
--- polly/branches/release_32/test/CodeGen/20120403-RHS-type-mismatch.ll (original)
+++ polly/branches/release_32/test/CodeGen/20120403-RHS-type-mismatch.ll Thu Dec 20 14:18:22 2012
@@ -2,7 +2,7 @@
; We just check that this compilation does not crash.
-target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32f64:64:64-f32:32:32-a0:0-n32"
+target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32-f64:64:64-f32:32:32-a0:0-n32"
target triple = "hexagon-unknown-linux-gnu"
define void @init() nounwind {
Modified: polly/branches/release_32/test/ScheduleOptimizer/2012-03-16-Empty-Domain.ll
URL: http://llvm.org/viewvc/llvm-project/polly/branches/release_32/test/ScheduleOptimizer/2012-03-16-Empty-Domain.ll?rev=170742&r1=170741&r2=170742&view=diff
==============================================================================
--- polly/branches/release_32/test/ScheduleOptimizer/2012-03-16-Empty-Domain.ll (original)
+++ polly/branches/release_32/test/ScheduleOptimizer/2012-03-16-Empty-Domain.ll Thu Dec 20 14:18:22 2012
@@ -1,5 +1,5 @@
; RUN: opt %loadPolly -polly-opt-isl -S %s
-target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32f64:64:64-f32:32:32-a0:0-n32"
+target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32-f64:64:64-f32:32:32-a0:0-n32"
target triple = "hexagon-unknown-linux-gnu"
define void @sdbout_label() nounwind {
Modified: polly/branches/release_32/test/ScopInfo/2012-03-16-Crash-because-of-unsigned-in-scev.ll
URL: http://llvm.org/viewvc/llvm-project/polly/branches/release_32/test/ScopInfo/2012-03-16-Crash-because-of-unsigned-in-scev.ll?rev=170742&r1=170741&r2=170742&view=diff
==============================================================================
--- polly/branches/release_32/test/ScopInfo/2012-03-16-Crash-because-of-unsigned-in-scev.ll (original)
+++ polly/branches/release_32/test/ScopInfo/2012-03-16-Crash-because-of-unsigned-in-scev.ll Thu Dec 20 14:18:22 2012
@@ -1,6 +1,6 @@
; RUN: opt %loadPolly -polly-scops -analyze < %s | FileCheck %s
-target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32f64:64:64-f32:32:32-a0:0-n32"
+target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32-f64:64:64-f32:32:32-a0:0-n32"
target triple = "hexagon-unknown-linux-gnu"
@array = external global [64 x i8], align 8
More information about the llvm-commits
mailing list