diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-23 06:05:41 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-23 06:05:41 +0000 |
| commit | 266e42b312ab7c457d1eab01475f63e59f60933c (patch) | |
| tree | 7ac7dbe9437ac2cdbbf532cacb9e043dc6f5645a /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
| parent | f171af97d50df7ebd7661756e89eef2295014e81 (diff) | |
| download | llvm-266e42b312ab7c457d1eab01475f63e59f60933c.zip llvm-266e42b312ab7c457d1eab01475f63e59f60933c.tar.gz llvm-266e42b312ab7c457d1eab01475f63e59f60933c.tar.bz2 | |
For PR950:
This patch removes the SetCC instructions and replaces them with the ICmp
and FCmp instructions. The SetCondInst instruction has been removed and
been replaced with ICmpInst and FCmpInst.
llvm-svn: 32751
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
| -rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index 58d0ab4..559c7dc 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -136,6 +136,8 @@ public: void visitSwitchInst(SwitchInst &I); void visitBinaryOperator(BinaryOperator &I); + void visitICmpInst(ICmpInst &I); + void visitFCmpInst(FCmpInst &I); void visitAllocationInst(AllocationInst &I); void visitFreeInst(FreeInst &I); void visitLoadInst(LoadInst &I); |
