Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1217021
| From | Keith Busch <keith.busch@intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] Regulator: Suppress compiler warnings |
| Date | 2015-09-01 20:50 +0200 |
| Message-ID | <q3YN3-6qW-7@gated-at.bofh.it> (permalink) |
| References | <q3Aro-50w-13@gated-at.bofh.it> <q3I5z-7zX-1@gated-at.bofh.it> <q3TDI-7C5-23@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Tue, 1 Sep 2015, Mark Brown wrote:
> On Tue, Sep 01, 2015 at 09:52:13AM +0900, Krzysztof Kozlowski wrote:
>> 2015-09-01 1:41 GMT+09:00 Keith Busch <keith.busch@intel.com>:
>>> int regulator_is_enabled_regmap(struct regulator_dev *rdev)
>>> {
>>> - unsigned int val;
>>> + unsigned int uninitialized_var(val);
>>> int ret;
>>>
>>> ret = regmap_read(rdev->regmap, rdev->desc->enable_reg, &val);
>
>> This is quite common pattern so such work-around should be added to
>> many other functions leading to code obfuscation. Which compiler do
>> you have in mind?
>
> Right, plus this will shut up valid compiler warnings which is poor
> practice anyway. I'd say this is a bug in the compiler.
Using gcc 4.7.2 with '-Os'. The warning does not happen when that option
is not used, i.e. disable CONFIG_CC_OPTIMIZE_FOR_SIZE.
I will certainly try other gcc versions with the same config and see
what happens.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] Regulator: Suppress compiler warnings Keith Busch <keith.busch@intel.com> - 2015-08-31 18:50 +0200
Re: [PATCH] Regulator: Suppress compiler warnings Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-09-01 03:00 +0200
Re: [PATCH] Regulator: Suppress compiler warnings Mark Brown <broonie@kernel.org> - 2015-09-01 15:20 +0200
Re: [PATCH] Regulator: Suppress compiler warnings Keith Busch <keith.busch@intel.com> - 2015-09-01 20:50 +0200
csiph-web