mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-27 11:55:49 +00:00
Fix return of empty range in MSAsmStmt::children
llvm-svn: 196839
This commit is contained in:
parent
a5a7942297
commit
7e6f36e29f
@ -1767,7 +1767,7 @@ public:
|
||||
}
|
||||
|
||||
child_range children() {
|
||||
return child_range(&Exprs[0], &Exprs[0]);
|
||||
return child_range(&Exprs[0], &Exprs[NumInputs + NumOutputs]);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user