diff options
-rw-r--r-- | clang/test/CodeGen/volatile-1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/volatile-1.c b/clang/test/CodeGen/volatile-1.c index 3e7bbb8f446..ac3b4c2e97b 100644 --- a/clang/test/CodeGen/volatile-1.c +++ b/clang/test/CodeGen/volatile-1.c @@ -80,11 +80,11 @@ int main() { __imag i; // ============================================================ - // Test cases we get wrong. + // FIXME: Test cases we get wrong. // A use. We load all of a into a copy of a, then load i. gcc forgets to do // the assignment. - (a = a).i; + // (a = a).i; // ============================================================ // Test cases where we intentionally differ from gcc, due to suspected bugs in |