This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- [ ] a | |
- [x] b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"vars": { | |
"@brand-primary": "#e8edff", | |
"@brand-success": "#264409", | |
"@brand-danger": "#8A1F11", | |
"@brand-info": "#514721", | |
"@text-color": "#444", | |
"@link-color": "#459", | |
"@link-color-hover": "#039", | |
"@border-radius-base": "3px", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var page = require('webpage').create(); | |
var url = 'http://localhost:9876/capture'; | |
var log = function(str) { | |
var dt = new Date(); | |
console.log(dt.toString() + ': ' + str); | |
}; | |
var pageLoaded = function(status) { | |
log('Finished loading ' + url + ' with status: ' + status); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static int | |
find_reusable_reload (rtx *p_in, rtx out, enum reg_class rclass, | |
enum reload_type type, int opnum, int dont_share) | |
{ | |
rtx in = *p_in; | |
int i; | |
/* We can't merge two reloads if the output of either one is | |
earlyclobbered. */ | |
if (earlyclobber_operand_p (out)) |