Displaying 2 results from an estimated 2 matches for "943747".
Did you mean:
94374
2017 Dec 07
3
May IR types be merged by llvm-link?
Hi all,
There is some uncertainty in the concept of LLVM IR, which results in
unexpected IR in some cases. The problem description is here:
https://reviews.llvm.org/D40567#943747. In short, llvm-link tries to merge
an opaque type with its definition, using type name for that. Clang uses
the same name for all specializations of a class template, so in this case
llvm-link chooses arbitrary type as a definition. As a result the opaque
type is mapped to wrong type in IR.
The...
2014 Sep 18
1
saving at jobs
I can easily save cron jobs in a file by doing this:
crontab -l > file.txt
And I can restore it with
crontab file.txt
Is there any way to do the same thing with at jobs?
The closest thing that I've managed to find is this:
#!/bin/bash
atq
for each in $(atq | cut -f 1); do echo "JOB $each"; at -c $each; done
That works but the output is very wordy and there is no way to