From: Chris Lattner Date: Fri, 22 Dec 2006 01:03:22 +0000 (+0000) Subject: add a note X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b9853ebc7b6b15f98929e35eab7f1418f343f880;p=oota-llvm.git add a note git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32741 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/README.txt b/lib/Target/X86/README.txt index 0667580a444..ff77558f245 100644 --- a/lib/Target/X86/README.txt +++ b/lib/Target/X86/README.txt @@ -751,3 +751,12 @@ to grab the bytes from the next cacheline. //===---------------------------------------------------------------------===// In c99 mode, the preprocessor doesn't like assembly comments like #TRUNCATE. + +//===---------------------------------------------------------------------===// + +This could be a single 16-bit load. +int f(char *p) { + if (p[0] == 1 && p[1] == 2) return 1; + return 0; +} +