1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

conditionalize on CallInst::ArgOffset

llvm-svn: 107766
This commit is contained in:
Gabor Greif 2010-07-07 09:43:45 +00:00
parent 886389fe30
commit a01cb6f114

View File

@ -256,14 +256,14 @@ private:
/// Returns the operand number of the first argument /// Returns the operand number of the first argument
unsigned getArgumentOffset() const { unsigned getArgumentOffset() const {
if (isCall()) if (isCall())
return 1; // Skip Function (ATM) return CallInst::ArgOffset; // Skip Function (ATM)
else else
return 0; // Args are at the front return 0; // Args are at the front
} }
unsigned getArgumentEndOffset() const { unsigned getArgumentEndOffset() const {
if (isCall()) if (isCall())
return 0; // Unchanged (ATM) return CallInst::ArgOffset ? 0 : 1; // Unchanged (ATM)
else else
return 3; // Skip BB, BB, Function return 3; // Skip BB, BB, Function
} }