In Bootstrap 3.2.2 there is declaration:
.form-control:-ms-input-placeholder {
color: #999;
}
IE 11.0.17 (possibly other versions as well) doesn't render it correctly, the placeholder remains black.
I put the following in my custom CSS and it fixed the problem:
input:-ms-input-placeholder {
color: #999;
}