treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / tools / testing / selftests / x86 / trivial_64bit_program.c
blob39f4b84fbf1586d56ac6d609c652491c1e2d469f
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Trivial program to check that we have a valid 64-bit build environment.
4 * Copyright (c) 2015 Andy Lutomirski
5 */
7 #ifndef __x86_64__
8 # error wrong architecture
9 #endif
11 #include <stdio.h>
13 int main()
15 printf("\n");
17 return 0;