Make the bytecode file executable as well for LLEE purposes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7992 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-08-20 20:38:15 +00:00
parent cd5e5a6a2a
commit c1fdca8045

View File

@ -440,6 +440,9 @@ int main(int argc, char **argv) {
// Make the script executable...
chmod(OutputFilename.c_str(), 0755);
// Make the bytecode file directly executable in LLEE as well
chmod(RealBytecodeOutput.c_str(), 0755);
}
return 0;