forked from OSchip/llvm-project
[UpdateTestChecks] Fix $ in function test for ARM.
Removes AArch64 target checking inside 32bit ARM test to bring back buildbots to a green state. But $ are not well handled for ARM and it still need to be fixed.
This commit is contained in:
parent
306c8ab208
commit
dee452da7a
|
@ -1,6 +1,7 @@
|
|||
; Check that we accept functions with '$' in the name.
|
||||
; TODO: This is not handled correcly on 32bit ARM and needs to be fixed.
|
||||
;
|
||||
; RUN: llc -mtriple=arm64-unknown-linux < %s | FileCheck --prefi=LINUX %s
|
||||
; RUN: llc -mtriple=armv7-unknown-linux < %s | FileCheck --prefix=LINUX %s
|
||||
; RUN: llc -mtriple=armv7-apple-darwin < %s | FileCheck --prefix=DARWIN %s
|
||||
; RUN: llc -mtriple=armv7-apple-ios < %s | FileCheck --prefix=IOS %s
|
||||
;
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||
; Check that we accept functions with '$' in the name.
|
||||
; TODO: This is not handled correcly on 32bit ARM and needs to be fixed.
|
||||
;
|
||||
; RUN: llc -mtriple=arm64-unknown-linux < %s | FileCheck --prefi=LINUX %s
|
||||
; RUN: llc -mtriple=armv7-unknown-linux < %s | FileCheck --prefix=LINUX %s
|
||||
; RUN: llc -mtriple=armv7-apple-darwin < %s | FileCheck --prefix=DARWIN %s
|
||||
; RUN: llc -mtriple=armv7-apple-ios < %s | FileCheck --prefix=IOS %s
|
||||
;
|
||||
define hidden i32 @"_Z54bar$ompvariant$bar"() {
|
||||
; CHECK-LABEL: _Z54bar$ompvariant$bar:
|
||||
; CHECK: // %bb.0: // %entry
|
||||
; CHECK-NEXT: mov w0, #2
|
||||
; CHECK-NEXT: ret
|
||||
entry:
|
||||
ret i32 2
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue