diff --git a/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll b/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll index 6c0f9e971035d..a00376d3b2c9d 100644 --- a/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll +++ b/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll @@ -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 ; diff --git a/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll.expected b/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll.expected index e191b0497f0a9..a6d4da41dfc1e 100644 --- a/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll.expected +++ b/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll.expected @@ -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 }