我想知道如何使用这个函数,因为我在执行此操作时遇到错误:
#define INT_ADD_OVERFLOW_P(a, b) \
__builtin_add_overflow_p (a, b, (__typeof__ ((a) + (b))) 0);
#include <stdio.h>
#include <assert.h>
__int main()
{
int x1 = -1073741826;
int y1 = -1073741826;
int z1 = x1+y1;
INT_ADD_OVERFLOW_P ( x1, y1);
printf("%d\n",z1);
return 0;
}
Compile_OUTPUT:
gcc -c -Wall -D DEBUG tempFile.c
gcc tempFile.o -o tempFile
Makefile:8: recipe for target 'tempFile' failed//new error after update
Compile_ERROR:
tempFile.c: In function ‘main’:
tempFile.c:10:1: warning: implicit declaration of function ‘__builtin_add_overflow_p’ [-Wimplicit-function-declaration]
tempFile.o: In function `main':
tempFile.c:(.text+0x44): undefined reference to `__builtin_add_overflow_p'
collect2: ld returned 1 exit status
make: *** [tempFile] Error 1
以下是我想要使用的功能的链接:
https://gcc.gnu.org/onlinedocs/gcc/Integer-Overflow-Builtins.html
这是我正在使用的makefile:
compiler=gcc
CFLAGS=-c -Wall -D DEBUG
programname=tempFile
all: $(programname)
$(programname): $(programname).o
$(compiler) $(programname).o -o $(programname)
$(programname).o: $(programname).c
$(compiler) $(CFLAGS) $(programname).c
clean:
rm *o $(programname)
答案 0 :(得分:3)
__builtin_add_overflow_p
尚未发布
答案 1 :(得分:1)
所以我想出了如何使用内置函数。而不是使用__builtin_add_overflow_p我使用了__builtin_add_overflow
#include <stdio.h>
#include <assert.h>
int main(void)
{
int x1 = -1073741826;
int y1 = -1073741826;
int z1 = x1 + y1;
int temp;
printf("%d\n", __builtin_add_overflow(x1, y1, &temp));
if (__builtin_add_overflow(x1, y1, &temp)) {
printf("overflow detected");
}
printf("%d\n", z1);
return 0;
}