0

以下代码:

ConstantInt * Idx = cast<ConstantInt>(gepi->getOperand(2));

产生以下错误:

error: invalid use of incomplete type ‘struct llvm::ConstantInt’
error: forward declaration of ‘struct llvm::ConstantInt’

我不知道为什么这个演员阵容不起作用。我正在使用 llvm 3.1。有什么帮助吗?

4

1 回答 1

5

添加#include <Constants.h>到您的来源。

于 2012-10-26T07:22:14.493 回答