Skip to content
Snippets Groups Projects
Commit 0ef8ad08 authored by Aaron Ballman's avatar Aaron Ballman
Browse files

Fix a failing test case after 6c75ab5f

The test is the same whether it's testing _BitInt or _ExtInt, so use
the type which is not deprecated.
parent 2db67e97
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ void test_builtin_elementwise_max(int i, short s, double d, float4 v, int3 iv, i
enum f { three };
enum f x = __builtin_elementwise_max(one, three);
_ExtInt(32) ext;
_BitInt(32) ext;
ext = __builtin_elementwise_max(ext, ext);
const int ci;
......@@ -112,7 +112,7 @@ void test_builtin_elementwise_min(int i, short s, double d, float4 v, int3 iv, i
enum f { three };
enum f x = __builtin_elementwise_min(one, three);
_ExtInt(32) ext;
_BitInt(32) ext;
ext = __builtin_elementwise_min(ext, ext);
const int ci;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment