Matt Arsenault
Matt Arsenault
If I have a notification from person X, and I launch messages, thus viewing the messages, the notification remains about the text message.
Change-Id: I30fdb177d1f1d60b1ba260ff9b76330abf36c78b
This infers the "amdgpu-calls" and "amdgpu-stack-objects" attributes, which are poorly named and handled backwards. We only use these to try to infer whether we need to initialize flat scratch. Instead,...
``` define i32 @src(ptr addrspace(1) %ptr) { %load = load i32, ptr addrspace(1) %ptr ret i32 %load } define i32 @tgt(ptr addrspace(1) %ptr) { %load = load i32, ptr addrspace(1)...
fneg, fabs and fcopysign are defined as bit operations, and should be subject to bitwise simplification. Fneg is xor with a signbit mask, fabs is and with a sign mask,...
This will enable removal of a hack from the wasm backend in a future change. This feels unnecessarily clunky. I would assume something was automatically parsing this and propagating it...
Currently wasm adds an extra level of options that work backwards from the standard options, and overwrites them. The ExceptionModel field in TM->Options is the standard user configuration option for...
In most contexts the pointer type is implied by the operation and should be propagated; getPointerTy is for niche cases where there is a synthesized value.
The base exp handling looks pretty incomplete.