Skip to content

Commit

Permalink
Aarch64 fixes.
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Schweitz <[email protected]>
  • Loading branch information
schweitzpgi committed Nov 7, 2024
1 parent 24f6528 commit c17b6c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion targettests/Kernel/signature-4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class QernelS1a {
};

struct QernelS1 {
S1 operator()(S1 s) __qpu__ {
S1 operator()(S1 s) NYI {
if (s._1 == 4 && s._2 == 8.2)
ok();
else
Expand Down
2 changes: 1 addition & 1 deletion test/AST-Quake/calling_convention-aarch64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ struct V3 {
// CHECK-LABEL: func.func @_ZN2V3clESt6vectorIlSaIlEES0_IbSaIbEE(
// CHECK-SAME: %[[VAL_0:.*]]: !cc.ptr<i8>,
// CHECK-SAME: %[[VAL_1:.*]]: !cc.ptr<!cc.struct<{!cc.ptr<i64>, !cc.ptr<i64>, !cc.ptr<i64>}>>,
// CHECK-SAME: %[[VAL_2:.*]]: !cc.ptr<!cc.struct<{!cc.ptr<i1>, !cc.ptr<i1>, !cc.ptr<i1>}>>)
// CHECK-SAME: %[[VAL_2:.*]]: !cc.ptr<!cc.struct<{!cc.ptr<i1>, !cc.array<i8 x 32>}>>)
// clang-format on

//===----------------------------------------------------------------------===//
Expand Down
2 changes: 1 addition & 1 deletion test/Quake-QIR/return_values.qke
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ func.func @test_1(%this: !cc.ptr<i8>) -> i16 {
// CHECK-LABEL: define i16 @test_1(i8* nocapture readnone
// CHECK-SAME: %[[VAL_0:.*]]) local_unnamed_addr {
// CHECK: %[[VAL_1:.*]] = alloca [0 x i8*], align 8
// CHECK: %[[VAL_2:.*]] = alloca i16, align 2
// CHECK: %[[VAL_2:.*]] = alloca i16
// CHECK: %[[VAL_3:.*]] = alloca { i8**, i8**, i8** }, align 8
// CHECK: %[[VAL_4:.*]] = bitcast i16* %[[VAL_2]] to i8*
// CHECK: %[[VAL_5:.*]] = getelementptr inbounds [0 x i8*], [0 x i8*]* %[[VAL_1]], i64 0, i64 0
Expand Down

0 comments on commit c17b6c2

Please sign in to comment.