Skip to content

Commit dfbb1c2

Browse files
committed
update test file (remove const)
1 parent a3cc71e commit dfbb1c2

File tree

1 file changed

+2
-2
lines changed
  • clang/test/CodeGen/AArch64

1 file changed

+2
-2
lines changed

clang/test/CodeGen/AArch64/gcs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py UTC_ARGS: --version 2
1+
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py UTC_ARGS: --clang-args ['-target-feature', '+gcs'] --version 2
22
// RUN: %clang_cc1 -triple aarch64-eabi -target-feature +gcs -emit-llvm %s -o - | FileCheck %s
33

44
#include <arm_acle.h>
@@ -51,6 +51,6 @@ uint64_t test_gcspopm() {
5151
// CHECK-NEXT: [[TMP2:%.*]] = call ptr @llvm.aarch64.gcsss(ptr [[TMP1]])
5252
// CHECK-NEXT: ret ptr [[TMP2]]
5353
//
54-
const void *test_gcsss(const void *p) {
54+
void *test_gcsss(void *p) {
5555
return __gcsss(p);
5656
}

0 commit comments

Comments
 (0)