Skip to content

Commit

Permalink
tests/lit-llvm/option_notarget.calc: Fix triple regex
Browse files Browse the repository at this point in the history
  • Loading branch information
e3m3 committed Sep 14, 2024
1 parent d103054 commit ec69602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/lit-llvm/option_notarget.calc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// CHECK_TARGET-LABEL: ; ModuleID = 'calcc'
// CHECK_TARGET: source_filename = "calcc"
// CHECK_TARGET: target datalayout = "{{[a-zA-Z0-9\:\-]+}}"
// CHECK_TARGET: target triple = "{{[\.a-zA-Z0-9\-]+}}"
// CHECK_TARGET: target triple = "{{[_\.a-zA-Z0-9\-]+}}"

// CHECK_TARGET-LABEL: define i64 @calcc_main() {
// CHECK_TARGET-LABEL: entry:
Expand All @@ -14,7 +14,7 @@
// CHECK_NOTARGET-LABEL: ; ModuleID = 'calcc'
// CHECK_NOTARGET: source_filename = "calcc"
// CHECK_NOTARGET-NOT: target datalayout = "{{[a-zA-Z0-9\:\-]+}}"
// CHECK_NOTARGET-NOT: target triple = "{{[\.a-zA-Z0-9\-]+}}"
// CHECK_NOTARGET-NOT: target triple = "{{[_\.a-zA-Z0-9\-]+}}"

// CHECK_NOTARGET-LABEL: define i64 @calcc_main() {
// CHECK_NOTARGET-LABEL: entry:
Expand Down

0 comments on commit ec69602

Please sign in to comment.