commit | 0c4e886dbf1cf7736819a49d5143ae1c2a0cfb79 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Sep 03 01:08:28 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Sep 03 01:08:28 2002 +0000 |
tree | f48443d191cddb7b196d7b0fa211607e58c77689 | |
parent | 65ad37205ef6958e07f57f85d1b5070ed1d93d1d [diff] [blame] |
- Renamed Type::isIntegral() to Type::isInteger() - Added new method Type::isIntegral() that is the same as isInteger, but also accepts bool. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3574 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp index 12ec82a..868bfbe 100644 --- a/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -1094,7 +1094,7 @@ cout << "\n"; if (RetTy->isIntegral()) - ExitCode = Result.SByteVal; // Capture the exit code of the program + ExitCode = Result.IntVal; // Capture the exit code of the program } }