forked from OSchip/llvm-project
[NewPM][test] Use -passes syntax in BoundsChecking lit tests
The legacy PM is deprecated, so use the new PM syntax in lit tests running the bounds-checking pass.
This commit is contained in:
parent
57bd67abfc
commit
15f1fb5a30
|
@ -1,5 +1,5 @@
|
|||
; RUN: opt < %s -bounds-checking -S | FileCheck %s
|
||||
; RUN: opt < %s -bounds-checking -bounds-checking-single-trap -S | FileCheck -check-prefix=SINGLE %s
|
||||
; RUN: opt < %s -passes=bounds-checking -S | FileCheck %s
|
||||
; RUN: opt < %s -passes=bounds-checking -bounds-checking-single-trap -S | FileCheck -check-prefix=SINGLE %s
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
||||
|
||||
; CHECK: @f1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt < %s -bounds-checking -S | FileCheck %s
|
||||
; RUN: opt < %s -passes=bounds-checking -S | FileCheck %s
|
||||
@array = internal global [1819 x i16] zeroinitializer, section ".bss,bss"
|
||||
@offsets = external dso_local global [10 x i16]
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt < %s -bounds-checking -S | FileCheck %s
|
||||
; RUN: opt < %s -passes=bounds-checking -S | FileCheck %s
|
||||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
||||
|
||||
; CHECK-LABEL: @sumSize
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt < %s -bounds-checking -S | FileCheck %s
|
||||
; RUN: opt < %s -passes=bounds-checking -S | FileCheck %s
|
||||
target datalayout = "e-p:64:64:64-p1:16:16:16-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
||||
|
||||
@global = private unnamed_addr constant [10 x i8] c"ola\00mundo\00", align 1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt < %s -bounds-checking -S | FileCheck %s
|
||||
; RUN: opt < %s -passes=bounds-checking -S | FileCheck %s
|
||||
|
||||
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32-S128"
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
; RUN: opt < %s -bounds-checking -S | FileCheck %s
|
||||
; RUN: opt < %s -passes=bounds-checking -S | FileCheck %s
|
||||
target datalayout = "e-p:64:64:64-p1:16:16:16-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
||||
|
||||
|
|
Loading…
Reference in New Issue