-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enh(llvm) match additional types (#3875)
- Loading branch information
1 parent
e75b7e4
commit acb6eb6
Showing
5 changed files
with
55 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<span class="hljs-comment">; Backslashes do not escape quotes, this is a legal string</span> | ||
<span class="hljs-keyword">define</span> void @<span class="hljs-string">"C:\"</span>() { | ||
<span class="hljs-keyword">ret</span> void | ||
<span class="hljs-keyword">define</span> <span class="hljs-type">void</span> @<span class="hljs-string">"C:\"</span>() { | ||
<span class="hljs-keyword">ret</span> <span class="hljs-type">void</span> | ||
} | ||
|
||
<span class="hljs-keyword">define</span> void @<span class="hljs-string">"escape_code_<span class="hljs-char escape_">\01</span>23<span class="hljs-char escape_">\04</span>end"</span>() { | ||
<span class="hljs-keyword">ret</span> void | ||
<span class="hljs-keyword">define</span> <span class="hljs-type">void</span> @<span class="hljs-string">"escape_code_<span class="hljs-char escape_">\01</span>23<span class="hljs-char escape_">\04</span>end"</span>() { | ||
<span class="hljs-keyword">ret</span> <span class="hljs-type">void</span> | ||
} |