summaryrefslogtreecommitdiffstats
path: root/clang/test/Sema/ms-fuzzy-asm.c
Commit message (Collapse)AuthorAgeFilesLines
* Some fixes for MS-style asm parsing: specifically, add some error checking, ↵Eli Friedman2011-09-301-9/+0
| | | | | | and handle asm comments using semicolons correctly. (The comments are actually surprisingly tricky.) llvm-svn: 140837
* Avoid warnings for functions that return a value using MS-style inlineMike Stump2010-01-041-1/+0
| | | | | | | | | | | | | assembly code. This avoids changing the bahvior when normal asm("") statements are used. The type of code affected would be: void* t4(void) { __asm mov eax, fs:[0x10] } I hope people like this version, if not, let me know. llvm-svn: 92531
* Temporarily XFAIL this test.Eli Friedman2009-12-181-0/+1
| | | | llvm-svn: 91643
* Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar2009-12-151-1/+1
| | | | | | | | | - This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
* Testcase for recent checkin.Mike Stump2009-12-111-1/+1
| | | | llvm-svn: 91080
* Rename clang to clang-cc.Daniel Dunbar2009-03-241-1/+1
| | | | | | Tests and drivers updated, still need to shuffle dirs. llvm-svn: 67602
* Use getLogicalLineNumber() in FuzzyParseMicrosoftAsmStatement(), it's more ↵Steve Naroff2008-02-081-2/+1
| | | | | | general and simplifies the code. llvm-svn: 46885
* Support fuzzy parsing MS line-oriented __asm's that originate from a macro ↵Steve Naroff2008-02-081-0/+10
(a case where we can't obtain source line info). As the test case indicates, we don't currently support line-oriented asm statements that mix file/macro body tokens. llvm-svn: 46878
OpenPOWER on IntegriCloud