Differences From Artifact [4677647f45]:
- File bs/llr/helpers.cpp — part of check-in [8a8e76084e] at 2019-03-02 21:01:51 on branch trunk — Function calls are now eagerly evaluated during parsing. (user: achavasse size: 403) [more...]
To Artifact [0cf572be67]:
- File bs/llr/helpers.cpp — part of check-in [af650a9e95] at 2019-09-22 14:37:55 on branch trunk — Project renaming. (user: achavasse size: 401)
1 2 | #include "llr/llr.h" | | | 1 2 3 4 5 6 7 8 9 10 |
#include "llr/llr.h"
namespace goose::llr
{
bool IsValueConstantOrExecutable( const ir::Value& val )
{
if( val.isConstant() )
return true;
return val.llr()->canBeExecuted();
|
| ︙ | ︙ |