Skip to content

Commit b3191a4

Browse files
committed
bless the ui tests
1 parent 8f9fe5a commit b3191a4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/ui/consts/const_arg_local.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
error: argument 3 is required to be a constant
22
--> $DIR/const_arg_local.rs:10:5
33
|
4-
LL | _mm_clmulepi64_si128(a, b, imm8)
4+
LL | _mm_clmulepi64_si128(a, b, imm8) //~ ERROR argument 3 is required to be a constant
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66

77
error: aborting due to previous error

src/test/ui/consts/const_arg_promotable.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
error: argument 3 is required to be a constant
22
--> $DIR/const_arg_promotable.rs:9:5
33
|
4-
LL | _mm_clmulepi64_si128(a, b, *&mut 42)
4+
LL | _mm_clmulepi64_si128(a, b, *&mut 42) //~ ERROR argument 3 is required to be a constant
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66

77
error: aborting due to previous error

src/test/ui/consts/const_arg_wrapper.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
error: argument 3 is required to be a constant
22
--> $DIR/const_arg_wrapper.rs:9:5
33
|
4-
LL | _mm_clmulepi64_si128(a, b, imm8)
4+
LL | _mm_clmulepi64_si128(a, b, imm8) //~ ERROR argument 3 is required to be a constant
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66

77
error: aborting due to previous error

0 commit comments

Comments
 (0)