diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-08-21 17:01:26 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-08-21 17:01:26 +0000 |
commit | b84cc6cfa3c674fc624c02184919b352874dfe2c (patch) | |
tree | 993bac06e03a7292ef1af0a5fd6a6715a410cb49 /clang/lib/Sema/SemaStmtAsm.cpp | |
parent | 2a6415ec049e0ce1372e8545e3fc7eff05aa4749 (diff) | |
download | bcm5719-llvm-b84cc6cfa3c674fc624c02184919b352874dfe2c.tar.gz bcm5719-llvm-b84cc6cfa3c674fc624c02184919b352874dfe2c.zip |
[ms-inline asm] Remove this test case and the associated special case code.
llvm-svn: 162288
Diffstat (limited to 'clang/lib/Sema/SemaStmtAsm.cpp')
-rw-r--r-- | clang/lib/Sema/SemaStmtAsm.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/lib/Sema/SemaStmtAsm.cpp b/clang/lib/Sema/SemaStmtAsm.cpp index 591a91c7e51..a09bdc75bdb 100644 --- a/clang/lib/Sema/SemaStmtAsm.cpp +++ b/clang/lib/Sema/SemaStmtAsm.cpp @@ -421,12 +421,6 @@ static void patchMSAsmStrings(Sema &SemaRef, bool &IsSimple, break; } - // FIXME: Why are we missing this segment register? - if (Name == "fs") { - Asm += Name; - break; - } - // Lookup the identifier. // TODO: Someone with more experience with clang should verify this the // proper way of doing a symbol lookup. |